2828 runner : ubuntu-24.04-arm
2929 steps :
3030 - name : Checkout
31- uses : actions/checkout@v5
31+ uses : actions/checkout@v7
3232
3333 - name : Prepare
3434 run : |
@@ -37,24 +37,24 @@ jobs:
3737
3838 - name : Docker meta
3939 id : meta
40- uses : docker/metadata-action@v5
40+ uses : docker/metadata-action@v6
4141 with :
4242 images : ${{ env.REGISTRY_IMAGE }}
4343 tags : latest
4444
4545 - name : Login to GitHub Container Registry
46- uses : docker/login-action@v3
46+ uses : docker/login-action@v4
4747 with :
4848 registry : ghcr.io
4949 username : " ${{ github.actor }}"
5050 password : " ${{ secrets.GITHUB_TOKEN }}"
5151
5252 - name : Set up Docker Buildx
53- uses : docker/setup-buildx-action@v3
53+ uses : docker/setup-buildx-action@v4
5454
5555 - name : Build and push by digest
5656 id : build
57- uses : docker/build-push-action@v6
57+ uses : docker/build-push-action@v7
5858 with :
5959 platforms : ${{ matrix.platform }}
6060 labels : ${{ steps.meta.outputs.labels }}
6868 touch "${{ runner.temp }}/digests/${digest#sha256:}"
6969
7070 - name : Upload digest
71- uses : actions/upload-artifact@v4
71+ uses : actions/upload-artifact@v7
7272 with :
7373 name : digests-${{ env.PLATFORM_PAIR }}
7474 path : ${{ runner.temp }}/digests/*
@@ -81,25 +81,25 @@ jobs:
8181 - build
8282 steps :
8383 - name : Download digests
84- uses : actions/download-artifact@v4
84+ uses : actions/download-artifact@v8
8585 with :
8686 path : ${{ runner.temp }}/digests
8787 pattern : digests-*
8888 merge-multiple : true
8989
9090 - name : Login to GitHub Container Registry
91- uses : docker/login-action@v3
91+ uses : docker/login-action@v4
9292 with :
9393 registry : ghcr.io
9494 username : " ${{ github.actor }}"
9595 password : " ${{ secrets.GITHUB_TOKEN }}"
9696
9797 - name : Set up Docker Buildx
98- uses : docker/setup-buildx-action@v3
98+ uses : docker/setup-buildx-action@v4
9999
100100 - name : Docker meta
101101 id : meta
102- uses : docker/metadata-action@v5
102+ uses : docker/metadata-action@v6
103103 with :
104104 images : ${{ env.REGISTRY_IMAGE }}
105105 tags : |
0 commit comments