Skip to content

Commit 4aaa0d4

Browse files
cluster-stack-bot[bot]kranurag7
authored andcommitted
🌱 Update github-actions group to v4
| datasource | package | from | to | | ----------- | ---------------- | ---- | -- | | github-tags | actions/cache | v3 | v4 | | github-tags | actions/checkout | v3 | v4 |
1 parent 6b62964 commit 4aaa0d4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/setup-go/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ runs:
1515
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
1616
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
1717
- name: Go Mod Cache
18-
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
18+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4
1919
with:
2020
path: ${{ steps.go-cache-paths.outputs.go-mod }}
2121
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
2222
restore-keys: |
2323
${{ runner.os }}-go-mod-
2424
- name: Go Build Cache
25-
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
25+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4
2626
with:
2727
path: ${{ steps.go-cache-paths.outputs.go-build }}
2828
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

.github/workflows/builder-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
17+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1818

1919
- name: Set up Docker Buildx
2020
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
goreleaser:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
16+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1717
with:
1818
fetch-depth: 0
1919
- run: git fetch --force --tags

0 commit comments

Comments
 (0)