Skip to content

Commit 9944259

Browse files
committed
Bump GitHub Actions versions
Update actions/checkout to v6 in publish, release, and test workflows Update actions/cache/restore and actions/cache/save to v5 in the test workflow
1 parent 629e13a commit 9944259

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
publish:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919

2020
- name: install cargo components
2121
run: rustup component add clippy

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
create-release:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- uses: taiki-e/create-gh-release-action@v1
2020
with:
2121
# (optional) Path to changelog.
@@ -37,7 +37,7 @@ jobs:
3737

3838
runs-on: ${{ matrix.os }}
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v6
4141
- name: install dependencies macos
4242
if: ${{ matrix.os == 'macos-latest' }}
4343
run: brew install ffmpeg pkgconf

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- name: Extract version
1818
id: extract-version
1919
run: echo "VERSION=$(grep -oP '^version = "\K[^"]+' Cargo.toml | awk '{$1=$1;print}')" >> $GITHUB_OUTPUT
2020

2121
- name: Cache restore
22-
uses: actions/cache/restore@v4
22+
uses: actions/cache/restore@v5
2323
id: cache-cargo-restore
2424
with:
2525
path: |
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Cache save
4242
if: steps.cache-cargo-restore.outputs.cache-hit != 'true'
43-
uses: actions/cache/save@v4
43+
uses: actions/cache/save@v5
4444
id: cache-cargo-save
4545
with:
4646
path: |

0 commit comments

Comments
 (0)