Skip to content

Commit 4ced454

Browse files
Bump actions/cache from 4.2.4 to 4.3.0 (#4548)
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0400d5f...0057852) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent aaa2ab6 commit 4ced454

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/admin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
cache: false
4747

4848
- name: Enable Go build cache
49-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
49+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5050
with:
5151
path: ~/.cache/go-build
5252
key: ${{ runner.os }}-go-build-${{ github.ref }}-${{ hashFiles('**') }}
@@ -55,7 +55,7 @@ jobs:
5555
${{ runner.os }}-go-build-
5656
5757
- name: Enable Go modules cache
58-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
58+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5959
with:
6060
path: ~/go/pkg/mod
6161
key: ${{ runner.os }}-go-modules-${{ hashFiles('**/go.sum') }}

.github/workflows/agent.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
cache: false
8181

8282
- name: Enable Go build cache
83-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
83+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
8484
with:
8585
path: ~/.cache/go-build
8686
key: ${{ runner.os }}-go-build-${{ github.ref }}-${{ hashFiles('**') }}
@@ -89,7 +89,7 @@ jobs:
8989
${{ runner.os }}-go-build-
9090
9191
- name: Enable Go modules cache
92-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
92+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
9393
with:
9494
path: ~/go/pkg/mod
9595
key: ${{ runner.os }}-go-modules-${{ hashFiles('**/go.sum') }}

.github/workflows/clean.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ jobs:
4545
lfs: true
4646

4747
- name: Enable Go modules cache
48-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
48+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4949
with:
5050
path: ~/go/pkg/mod
5151
key: ${{ matrix.go.version }}-modules-${{ hashFiles('**/go.sum') }}
5252
restore-keys: |
5353
${{ matrix.go.version }}-modules-
5454
5555
- name: Enable Go build cache
56-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
56+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5757
with:
5858
path: ~/.cache/go-build
5959
key: ${{ matrix.go.version }}-build-${{ github.ref }}-${{ hashFiles('**') }}

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cache: false
3131

3232
- name: Enable Go build cache
33-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
33+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3434
with:
3535
path: ~/.cache/go-build
3636
key: ${{ runner.os }}-go-build-${{ github.ref }}-${{ hashFiles('**') }}
@@ -39,7 +39,7 @@ jobs:
3939
${{ runner.os }}-go-build-
4040
4141
- name: Enable Go modules cache
42-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
42+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4343
with:
4444
path: ~/go/pkg/mod
4545
key: ${{ runner.os }}-go-modules-${{ hashFiles('**/go.sum') }}

.github/workflows/qan-api2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
cache: false
4747

4848
- name: Enable Go build cache
49-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
49+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5050
with:
5151
path: ~/.cache/go-build
5252
key: ${{ runner.os }}-go-build-${{ github.ref }}-${{ hashFiles('**') }}
@@ -55,7 +55,7 @@ jobs:
5555
${{ runner.os }}-go-build-
5656
5757
- name: Enable Go modules cache
58-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
58+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5959
with:
6060
path: ~/go/pkg/mod
6161
key: ${{ runner.os }}-go-modules-${{ hashFiles('**/go.sum') }}

.github/workflows/vmproxy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
cache: false
4747

4848
- name: Enable Go build cache
49-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
49+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5050
with:
5151
path: ~/.cache/go-build
5252
key: ${{ runner.os }}-go-build-${{ github.ref }}-${{ hashFiles('**') }}
@@ -55,7 +55,7 @@ jobs:
5555
${{ runner.os }}-go-build-
5656
5757
- name: Enable Go modules cache
58-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
58+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5959
with:
6060
path: ~/go/pkg/mod
6161
key: ${{ runner.os }}-go-modules-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)