@@ -16,21 +16,21 @@ jobs:
16
16
id-token : write
17
17
steps :
18
18
- name : Check out code
19
- uses : actions/checkout@v3.5.2
19
+ uses : actions/checkout@v4
20
20
with :
21
21
fetch-depth : 0
22
22
23
23
- name : Install Carvel Tools
24
24
run : ./hack/install-deps.sh
25
25
26
26
- name : Install imgpkg
27
- uses : carvel-dev/setup-action@v1
27
+ uses : carvel-dev/setup-action@v2
28
28
with :
29
29
only : imgpkg
30
30
token : ${{ secrets.GITHUB_TOKEN }}
31
31
32
32
- name : Login to GitHub Container Registry
33
- uses : docker/login-action@v3
33
+ uses : docker/login-action@v3.1.0
34
34
with :
35
35
registry : ghcr.io
36
36
username : ${{ github.actor }}
@@ -42,13 +42,13 @@ jobs:
42
42
go-version : 1.21.6
43
43
44
44
- name : Set up Cosign
45
- uses : sigstore/cosign-installer@v3
45
+ uses : sigstore/cosign-installer@v3.4.0
46
46
47
47
- name : Run release script
48
48
run : |
49
49
set -e -x
50
50
minikube start --driver=docker --wait=all
51
- docker buildx create minikube --use --driver=kubernetes --bootstrap
51
+ docker buildx create --name minikube --use --driver=kubernetes --bootstrap
52
52
./hack/build-release.sh
53
53
# Create release folder to store all the output artifacts
54
54
mkdir release
@@ -220,7 +220,7 @@ jobs:
220
220
--certificate-oidc-issuer=https://token.actions.githubusercontent.com ./tmp/checksums.txt
221
221
222
222
- name : Create release draft and upload release yaml
223
- uses : softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
223
+ uses : softprops/action-gh-release@v2.0.2
224
224
with :
225
225
name : ${{ github.ref_name }}
226
226
token : ${{ secrets.GITHUB_TOKEN }}
@@ -232,7 +232,7 @@ jobs:
232
232
prerelease : true
233
233
234
234
- name : Get uploaded release YAML checksum
235
- uses : actions/github-script@v6
235
+ uses : actions/github-script@v7.0.1
236
236
id : get-checksums-from-draft-release
237
237
if : startsWith(github.ref, 'refs/tags/')
238
238
with :
0 commit comments