Skip to content

Commit 680536d

Browse files
authored
Merge pull request #113 from vimeda/renovate/actions-cache-4.x
Update actions/cache action to v4
2 parents 78110d9 + 494330e commit 680536d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-image.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
uses: docker/setup-buildx-action@v2
7474

7575
- name: Cache Docker layers
76-
uses: actions/cache@v3.0.5
76+
uses: actions/cache@v4.1.0
7777
with:
7878
path: /tmp/.buildx-cache
7979
key: ${{ runner.os }}-single-buildx-srv

.github/workflows/test-go.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Checkout code
1717
uses: actions/checkout@v4
1818

19-
- uses: actions/cache@v3.0.5
19+
- uses: actions/cache@v4.1.0
2020
with:
2121
path: ~/go/pkg/mod
2222
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/test-php.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: Cache composer dependencies
39-
uses: actions/cache@v3.0.5
39+
uses: actions/cache@v4.1.0
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)