Skip to content

Commit 7d6af69

Browse files
authored
Update action versions in workflows for improved stability (#993)
1 parent cef7963 commit 7d6af69

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/fix-outdated-tools.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
LOCKFILE: ${{ matrix.lockfile }}
5858

5959
- name: Upload changes
60-
uses: actions/upload-artifact@v4
60+
uses: actions/upload-artifact@v7
6161
if: always()
6262
with:
6363
name: ${{ matrix.lockfile }}
@@ -80,7 +80,7 @@ jobs:
8080
fetch-depth: 0
8181

8282
- name: Download all artifacts
83-
uses: actions/download-artifact@v5
83+
uses: actions/download-artifact@v8
8484
with:
8585
merge-multiple: true
8686

@@ -98,7 +98,7 @@ jobs:
9898
- name: Create or update Pull Request
9999
id: cpr
100100
if: steps.check_changes.outputs.changes == 'true'
101-
uses: peter-evans/create-pull-request@v7
101+
uses: peter-evans/create-pull-request@v8
102102
with:
103103
branch: fix-outdated-tools
104104
commit-message: Remove not-installable tool revisions

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
matrix:
1414
python-version: [3.11]
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Cache downloads
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ~/.cache/pip
2727
key: cache-${{ matrix.python-version }}

.github/workflows/update-trusted.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
matrix:
1515
python-version: [3.11]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
@@ -40,7 +40,7 @@ jobs:
4040
git commit -m "Updated trusted tools ($(date -I))" || true
4141
4242
- name: Push changes
43-
uses: ad-m/github-push-action@master
43+
uses: ad-m/github-push-action@v1
4444
with:
4545
github_token: ${{ secrets.GITHUB_TOKEN }}
4646
branch: ${{ github.ref }}

0 commit comments

Comments
 (0)