@@ -24,30 +24,29 @@ jobs:
2424 - name : Set up Docker Buildx
2525 uses : docker/setup-buildx-action@v3
2626 - name : Build SDK
27- uses : docker/build-push-action@v4
27+ uses : docker/build-push-action@v6
2828 with :
2929 context : .
3030 load : true
3131 tags : ${{ env.TEST_TAG }}
32- platforms : linux/amd64,linux/arm64
3332 - name : Test SDK
3433 run : bash ./test_sdk.sh ${{ env.TEST_TAG }}
35- - name : Log into Docker Hub
36- uses : docker/login-action@v2
37- with :
38- username : ${{ github.actor }}
39- password : ${{ secrets.DOCKER_HUB_TOKEN }}
34+ # - name: Log into Docker Hub
35+ # uses: docker/login-action@v3
36+ # with:
37+ # username: ${{ github.actor }}
38+ # password: ${{ secrets.DOCKER_HUB_TOKEN }}
4039 - name : Extract SDK metadata
4140 id : meta
4241 uses : docker/metadata-action@v4
4342 with :
4443 images : lukstep/raspberry-pi-pico-sdk
4544 - name : Push SDK image
4645 if : github.event_name == 'release' && github.event.action == 'published'
47- uses : docker/build-push-action@v4
46+ uses : docker/build-push-action@v6
4847 with :
4948 context : .
50- push : true
49+ # push: true
5150 tags : ${{ steps.meta.outputs.tags }}
5251 labels : ${{ steps.meta.outputs.labels }}
5352 platforms : linux/amd64,linux/arm64
0 commit comments