@@ -22,31 +22,31 @@ jobs:
2222 password : ${{ secrets.DOCKERHUB_PASSWORD }}
2323
2424 - name : Build and push base image
25- uses : docker/build-push-action@v5
25+ uses : docker/build-push-action@v6
2626 if : github.event_name == 'workflow_dispatch'
2727 with :
2828 context : " {{defaultContext}}:extra/docker/base"
2929 push : true
3030 tags : pwntools/pwntools:base
3131
3232 - name : Build and push stable image
33- uses : docker/build-push-action@v5
33+ uses : docker/build-push-action@v6
3434 if : github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/stable')
3535 with :
3636 context : " {{defaultContext}}:extra/docker/stable"
3737 push : true
3838 tags : pwntools/pwntools:stable
3939
4040 - name : Build and push beta image
41- uses : docker/build-push-action@v5
41+ uses : docker/build-push-action@v6
4242 if : github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/beta')
4343 with :
4444 context : " {{defaultContext}}:extra/docker/beta"
4545 push : true
4646 tags : pwntools/pwntools:beta
4747
4848 - name : Build and push dev image
49- uses : docker/build-push-action@v5
49+ uses : docker/build-push-action@v6
5050 if : github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/dev')
5151 with :
5252 context : " {{defaultContext}}:extra/docker/dev"
5656 pwntools/pwntools:latest
5757
5858 - name : Build and push ci image
59- uses : docker/build-push-action@v5
59+ uses : docker/build-push-action@v6
6060 if : github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/dev')
6161 with :
6262 context : " {{defaultContext}}:travis/docker"
0 commit comments