@@ -39,20 +39,20 @@ jobs:
39
39
# https://github.com/sigstore/cosign-installer
40
40
- name : Install cosign
41
41
if : github.event_name != 'pull_request'
42
- uses : sigstore/cosign-installer@f3c664df7af409cb4873aa5068053ba9d61a57b6 # v2.6.0
42
+ uses : sigstore/cosign-installer@v3 # v2.6.0
43
43
with :
44
44
cosign-release : ' v1.11.0'
45
45
46
46
47
47
# Workaround: https://github.com/docker/build-push-action/issues/461
48
48
- name : Setup Docker buildx
49
- uses : docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
49
+ uses : docker/setup-buildx-action@v3
50
50
51
51
# Login against a Docker registry except on PR
52
52
# https://github.com/docker/login-action
53
53
- name : Log into registry ${{ env.REGISTRY }}
54
54
if : github.event_name != 'pull_request'
55
- uses : docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
55
+ uses : docker/login-action@v3
56
56
with :
57
57
registry : ${{ env.REGISTRY }}
58
58
username : ${{ github.actor }}
@@ -62,15 +62,15 @@ jobs:
62
62
# https://github.com/docker/metadata-action
63
63
- name : Extract Docker metadata
64
64
id : meta
65
- uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
65
+ uses : docker/metadata-action@v5
66
66
with :
67
67
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
68
68
69
69
# Build and push Docker image with Buildx (don't push on PR)
70
70
# https://github.com/docker/build-push-action
71
71
- name : Build and push Docker image
72
72
id : build-and-push
73
- uses : docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
73
+ uses : docker/build-push-action@v6
74
74
with :
75
75
context : .
76
76
push : ${{ github.event_name != 'pull_request' }}
0 commit comments