Skip to content

Commit 60cf24c

Browse files
build(deps): bump actions/cache from 4.2.0 to 4.2.1 (#2211)
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 4.2.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@1bd1e32...0c907a7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 99e017a commit 60cf24c

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/documentation-linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
4444
with:
4545
go-version-file: tools/go.mod
46-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
46+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
4747
continue-on-error: true
4848
id: cache-go-pkg-mod
4949
timeout-minutes: 2

.github/workflows/goreleaser-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
3939
with:
4040
go-version-file: go.mod
41-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
41+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
4242
continue-on-error: true
4343
timeout-minutes: 2
4444
with:
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
5858
with:
5959
go-version-file: go.mod
60-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
60+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
6161
continue-on-error: true
6262
timeout-minutes: 2
6363
with:

.github/workflows/linters.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2525
with:
2626
go-version-file: tools/go.mod
27-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
27+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
2828
continue-on-error: true
2929
id: cache-go-pkg-mod
3030
timeout-minutes: 2
@@ -47,15 +47,15 @@ jobs:
4747
- name: GOCACHE
4848
run: |
4949
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
50-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
50+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
5151
continue-on-error: true
5252
timeout-minutes: 2
5353
with:
5454
# TODO: Replace with supported mechanism when it is supported
5555
# https://github.com/actions/setup-go/issues/54
5656
path: ${{ env.GOCACHE }}
5757
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
58-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
58+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
5959
continue-on-error: true
6060
timeout-minutes: 2
6161
with:
@@ -77,15 +77,15 @@ jobs:
7777
- name: GOCACHE
7878
run: |
7979
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
80-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
80+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
8181
continue-on-error: true
8282
timeout-minutes: 2
8383
with:
8484
# TODO: Replace with supported mechanism when it is supported
8585
# https://github.com/actions/setup-go/issues/54
8686
path: ${{ env.GOCACHE }}
8787
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
88-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
88+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
8989
continue-on-error: true
9090
timeout-minutes: 2
9191
with:
@@ -113,15 +113,15 @@ jobs:
113113
- name: GOCACHE
114114
run: |
115115
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
116-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
116+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
117117
continue-on-error: true
118118
timeout-minutes: 2
119119
with:
120120
# TODO: Replace with supported mechanism when it is supported
121121
# https://github.com/actions/setup-go/issues/54
122122
path: ${{ env.GOCACHE }}
123123
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
124-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
124+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
125125
continue-on-error: true
126126
timeout-minutes: 2
127127
with:

.github/workflows/tfplugindocs-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
- name: GOCACHE
2929
run: |
3030
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
31-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
31+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
3232
continue-on-error: true
3333
timeout-minutes: 2
3434
with:
3535
# TODO: Replace with supported mechanism when it is supported
3636
# https://github.com/actions/setup-go/issues/54
3737
path: ${{ env.GOCACHE }}
3838
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
39-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
39+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
4040
continue-on-error: true
4141
timeout-minutes: 2
4242
with:

0 commit comments

Comments
 (0)