Skip to content

Commit

Permalink
DX: revert dependabot and update setup-python (#62)
Browse files Browse the repository at this point in the history
* MAINT: update `actions/setup-python` to v5
  • Loading branch information
redeboer authored Mar 5, 2024
1 parent 27ac0fd commit e383765
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 5 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
assignees:
- redeboer
commit-message:
prefix: MAINT
labels:
- 🔨 Maintenance
schedule:
interval: monthly
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ repos:
- id: check-dev-files
args:
- --allow-deprecated-workflows
- --dependabot=update
- --no-notebooks
- --no-prettierrc
- --no-pypi
Expand Down
2 changes: 1 addition & 1 deletion create-pytest-matrix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
using: composite
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- run: pip install toml
Expand Down
2 changes: 1 addition & 1 deletion create-python-version-matrix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
using: composite
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- run: pip install toml
Expand Down
2 changes: 1 addition & 1 deletion get-pre-commit-taplo-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
using: composite
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- run: python3 -m pip install PyYAML
Expand Down
2 changes: 1 addition & 1 deletion get-skipped-pre-commit-hooks/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: composite
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- run: python3 -m pip install PyYAML
Expand Down
2 changes: 1 addition & 1 deletion pip-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
using: composite
steps:
- if: inputs.python-version
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- name: Determine Python version
Expand Down

0 comments on commit e383765

Please sign in to comment.