@@ -19,35 +19,35 @@ jobs:
1919 packages : write
2020 steps :
2121 - name : Checkout repository
22- uses : actions/checkout@v2
22+ uses : actions/checkout@v4
2323
2424 - name : Set up Docker Buildx
25- uses : docker/setup-buildx-action@v2
25+ uses : docker/setup-buildx-action@v3
2626
2727 - name : Log in to the Container registry
28- uses : docker/login-action@v1
28+ uses : docker/login-action@v3
2929 with :
3030 registry : ghcr.io
3131 username : ${{ github.actor }}
3232 password : ${{ secrets.GITHUB_TOKEN }}
3333
3434 - name : Build mkdocs image
35- uses : docker/build-push-action@v4
35+ uses : docker/build-push-action@v6
3636 with :
3737 push : true
3838 file : ./hack/docker/Dockerfile
3939 tags : ghcr.io/knative/knative-docs:latest
4040
4141 - name : Build helloworld-go image
42- uses : docker/build-push-action@v4
42+ uses : docker/build-push-action@v6
4343 with :
4444 push : true
4545 platforms : linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
4646 context : ./code-samples/serving/hello-world/helloworld-go
4747 tags : ghcr.io/knative/helloworld-go:latest
4848
4949 - name : Build autoscale-go image
50- uses : docker/build-push-action@v4
50+ uses : docker/build-push-action@v6
5151 with :
5252 push : true
5353 platforms : linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
0 commit comments