File tree Expand file tree Collapse file tree 9 files changed +14
-14
lines changed Expand file tree Collapse file tree 9 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ runs:
2626 using : " composite"
2727 steps :
2828 - uses : ./.github/actions/setup-go
29- - uses : actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4
29+ - uses : actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
3030 with :
3131 path : hack/tools/bin
3232 key : ${{ runner.os }}-tools-bin-e2e-${{ hashFiles('Makefile') }}
3333 restore-keys : |
3434 ${{ runner.os }}-tools-bin-e2e-
3535 ${{ runner.os }}-tools-bin-
3636 - name : Download artifact
37- uses : actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4
37+ uses : actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4
3838 with :
3939 name : test-release
4040 path : out
Original file line number Diff line number Diff line change 4444
4545 # Import GitHub's cache build to docker cache
4646 - name : Copy Caph Golang cache to docker cache
47- uses : docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1 .0
47+ uses : docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2 .0
4848 with :
4949 provenance : false
5050 context : /tmp/.cache/caph
5454 target : import-cache
5555
5656 - name : Build and push manager image
57- uses : docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5
57+ uses : docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5
5858 with :
5959 provenance : false
6060 context : .
Original file line number Diff line number Diff 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@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4
18+ uses : actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # 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@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4
25+ uses : actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
2626 with :
2727 path : ${{ steps.go-cache-paths.outputs.go-build }}
2828 key : ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
Original file line number Diff line number Diff line change 44 using : " composite"
55 steps :
66 - uses : ./.github/actions/setup-go
7- - uses : actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4
7+ - uses : actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
88 with :
99 path : hack/tools/bin
1010 key : ${{ runner.os }}-tools-bin-release-${{ hashFiles('Makefile') }}
Original file line number Diff line number Diff line change 8888
8989 # Import GitHub's cache build to docker cache
9090 - name : Copy Caph Golang cache to docker cache
91- uses : docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1 .0
91+ uses : docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2 .0
9292 with :
9393 provenance : false
9494 context : /tmp/.cache/caph
9898 target : import-cache
9999
100100 - name : Build and push manager image
101- uses : docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5
101+ uses : docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5
102102 id : docker_build_release
103103 with :
104104 provenance : false
@@ -150,7 +150,7 @@ jobs:
150150 # Store docker's golang's cache build locally only on the main branch
151151 - name : Store Caph Golang cache build locally
152152 if : ${{ steps.cache.outputs.cache-hit != 'true' }}
153- uses : docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1 .0
153+ uses : docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2 .0
154154 with :
155155 provenance : false
156156 context : .
Original file line number Diff line number Diff line change 4242 done
4343
4444 - name : Generate Token
45- uses : actions/create-github-app-token@e8e39f73bb84fdf315a015fa3104f314c0a258b4 # v1
45+ uses : actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c # v1
4646 id : generate-token
4747 with :
4848 app-id : ${{ secrets.SYSELF_APP_ID }}
Original file line number Diff line number Diff line change 6060 echo 'EOF' >> $GITHUB_ENV
6161
6262 - name : Build and push manager image
63- uses : docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5
63+ uses : docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5
6464 id : docker_build_release
6565 with :
6666 provenance : false
Original file line number Diff line number Diff line change 1414 uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1515
1616 - name : Generate Token
17- uses : actions/create-github-app-token@e8e39f73bb84fdf315a015fa3104f314c0a258b4 # v1
17+ uses : actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c # v1
1818 id : generate-token
1919 with :
2020 app-id : ${{ secrets.SYSELF_APP_ID }}
Original file line number Diff line number Diff line change 3333 uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3434
3535 - name : Generate Token
36- uses : actions/create-github-app-token@e8e39f73bb84fdf315a015fa3104f314c0a258b4 # v1
36+ uses : actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c # v1
3737 id : generate-token
3838 with :
3939 app-id : ${{ secrets.SYSELF_APP_ID }}
You can’t perform that action at this time.
0 commit comments