Skip to content

Commit 6549dcb

Browse files
committed
Update outdated action versions
Many of the actions used in our workflows were on old versions, causing some actionlint failures. So in this commit I'm updating all actions to the latest major versions.
1 parent a494a1b commit 6549dcb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
name: Build distribution packages
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v5
1414
- name: Set up Python 3.10
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: "3.10"
1818
- name: Install pypa/build
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build packages
2222
run: |
2323
pyproject-build
24-
- uses: actions/upload-artifact@v3
24+
- uses: actions/upload-artifact@v5
2525
with:
2626
name: dist
2727
path: dist/
@@ -36,7 +36,7 @@ jobs:
3636
# this permission is mandatory for trusted publishing
3737
id-token: write
3838
steps:
39-
- uses: actions/download-artifact@v3
39+
- uses: actions/download-artifact@v5
4040
with:
4141
name: dist
4242
path: dist/
@@ -56,7 +56,7 @@ jobs:
5656
# this permission is mandatory for trusted publishing
5757
id-token: write
5858
steps:
59-
- uses: actions/download-artifact@v3
59+
- uses: actions/download-artifact@v5
6060
with:
6161
name: dist
6262
path: dist/

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
fail-fast: false
3838

3939
steps:
40-
- uses: actions/checkout@v1
40+
- uses: actions/checkout@v5
4141
- name: Set up Python ${{ matrix.python-version }}
42-
uses: actions/setup-python@v4
42+
uses: actions/setup-python@v6
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
allow-prereleases: true

0 commit comments

Comments
 (0)