Skip to content

Commit 2b22f89

Browse files
Bump actions/cache from 3 to 4 in /.github/workflows
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6305aab commit 2b22f89

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
uses: actions/checkout@v4
8585

8686
- name: Cache Pacman packages
87-
uses: actions/cache@v3
87+
uses: actions/cache@v4
8888
with:
8989
path: ${{ env.PACMAN_CACHE }}
9090
key: pacman-${{ runner.os }}-${{ github.sha }}

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
sudo rm -rf /tmp/pacman-cache/*
4242
4343
- name: Cache Pacman packages
44-
uses: actions/cache@v3
44+
uses: actions/cache@v4
4545
with:
4646
path: /tmp/pacman-cache
4747
key: pacman-${{ runner.os }}-${{ env.CACHE_KEY }}

.github/workflows/update-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo chmod 777 /tmp/pacman-cache
3131
3232
- name: Cache Pacman packages
33-
uses: actions/cache@v3
33+
uses: actions/cache@v4
3434
with:
3535
path: /tmp/pacman-cache
3636
key: pacman-${{ env.CACHE_KEY }}

0 commit comments

Comments
 (0)