Skip to content

Commit

Permalink
Update github actions dependencies.
Browse files Browse the repository at this point in the history
Also setup depandabot to automate this in the future.
  • Loading branch information
aebrahim committed Jan 9, 2024
1 parent 846adcc commit acadf7f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# yaml-language-server: $schema=https://json.schemastore.org/dependabot-2.0.json

version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: monthly
2 changes: 1 addition & 1 deletion .github/workflows/annotate_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-alpha.1", "pypy3.10", "pypy3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-alpha.2", "pypy3.10", "pypy3.9"]
steps:
- name: Test Report
uses: dorny/test-reporter@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
with:
fetch-depth: -1
fetch-tags: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip
- run: pip wheel .
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheel
path: ./*.whl
Expand All @@ -34,7 +34,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheel
path: dist/
Expand All @@ -52,7 +52,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheel
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip
Expand Down

0 comments on commit acadf7f

Please sign in to comment.