Skip to content

Commit

Permalink
ci(dependencies): update setup python action dependencies and dependa…
Browse files Browse the repository at this point in the history
…bot settings (#457)

* ci(dependencies): update setup python action deps

* add dependabot update
  • Loading branch information
d33bs authored Oct 1, 2024
1 parent 98da73f commit 9e8b0fb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup-env/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
using: "composite"
steps:
- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- name: Generate Cache Key PY (Linux)
Expand All @@ -46,7 +46,7 @@ runs:
# This allows for caching the pre-commit hook installation across
# jobs and workflows.
if: ${{ inputs.cache-pre-commit == 'true' }}
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.cache
Expand All @@ -58,7 +58,7 @@ runs:
# the poetry.lock file. This allows for caching the virtual
# environment with all the dependencies.
if: ${{ inputs.cache-venv == 'true' }}
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.cache
Expand Down
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ updates:
# See here for more information:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
- package-ecosystem: "github-actions"
# checks for updates by default under `/.github/workflows`
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
- package-ecosystem: "github-actions"
# checks for updates under custom action setup-env
directory: "/.github/actions/setup-env"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"

0 comments on commit 9e8b0fb

Please sign in to comment.