3030
3131 steps :
3232 - name : Checkout code
33- uses : actions/checkout@v4
33+ uses : actions/checkout@v6
3434 with :
3535 fetch-depth : 0
3636 # Use tag from workflow_dispatch input, otherwise use the git ref from tag push
@@ -45,13 +45,13 @@ jobs:
4545 df -h
4646
4747 - name : Set up QEMU
48- uses : docker/setup-qemu-action@v3
48+ uses : docker/setup-qemu-action@v4
4949
5050 - name : Set up Docker Buildx
51- uses : docker/setup-buildx-action@v3
51+ uses : docker/setup-buildx-action@v4
5252
5353 - name : Log in to GitHub Container Registry
54- uses : docker/login-action@v3
54+ uses : docker/login-action@v4
5555 with :
5656 registry : ${{ env.REGISTRY }}
5757 username : ${{ github.repository_owner }}
8989 - name : Build and push image (latest version)
9090 id : build_latest
9191 if : steps.version.outputs.is_latest == 'true'
92- uses : docker/build-push-action@v6
92+ uses : docker/build-push-action@v7
9393 with :
9494 context : .
9595 target : prod
@@ -104,7 +104,7 @@ jobs:
104104 - name : Build and push image (none latest version)
105105 id : build_non_latest
106106 if : steps.version.outputs.is_latest == 'false'
107- uses : docker/build-push-action@v6
107+ uses : docker/build-push-action@v7
108108 with :
109109 context : .
110110 target : prod
@@ -116,7 +116,7 @@ jobs:
116116 ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.major }}
117117
118118 - name : Set up Go
119- uses : actions/setup-go@v5
119+ uses : actions/setup-go@v6
120120 with :
121121 go-version-file : ' go.mod'
122122
@@ -154,7 +154,7 @@ jobs:
154154
155155 - name : Build and push bundle image (latest version)
156156 if : steps.version.outputs.is_latest == 'true'
157- uses : docker/build-push-action@v6
157+ uses : docker/build-push-action@v7
158158 with :
159159 context : .
160160 file : bundle.Dockerfile
@@ -168,7 +168,7 @@ jobs:
168168
169169 - name : Build and push bundle image (non-latest version)
170170 if : steps.version.outputs.is_latest == 'false'
171- uses : docker/build-push-action@v6
171+ uses : docker/build-push-action@v7
172172 with :
173173 context : .
174174 file : bundle.Dockerfile
0 commit comments