File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 name : ubuntu-latest - Docker - lint
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v5
15+ - uses : actions/checkout@v6
1616
1717 - name : Run hadolint
1818 uses : reviewdog/action-hadolint@v1
2626 runs-on : ubuntu-latest
2727
2828 steps :
29- - uses : actions/checkout@v5
29+ - uses : actions/checkout@v6
3030
3131 - name : Set Environment Variables
3232 run : |
3838
3939 - name : Set up QEMU
4040 id : qemu-setup
41- uses : docker/setup-qemu-action@master
41+ uses : docker/setup-qemu-action@v3
4242 with :
4343 platforms : all
4444
4747
4848 - name : Set up Docker Buildx
4949 id : buildx
50- uses : docker/setup-buildx-action@master
50+ uses : docker/setup-buildx-action@v3
5151 with :
5252 driver : docker-container
5353 use : true
6161
6262 - name : Build and push latest
6363 if : github.event_name == 'push' && !startsWith(github.ref, 'refs/tags') && github.ref == 'refs/heads/master'
64- uses : docker/build-push-action@master
64+ uses : docker/build-push-action@v6
6565 with :
6666 context : .
6767 builder : ${{ steps.buildx.outputs.name }}
7373
7474 - name : Build and push on tag
7575 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
76- uses : docker/build-push-action@master
76+ uses : docker/build-push-action@v6
7777 with :
7878 context : .
7979 file : ./Dockerfile
Original file line number Diff line number Diff line change 2323 type : [ sources ]
2424
2525 steps :
26- - uses : actions/checkout@v5
26+ - uses : actions/checkout@v6
2727 - name : Set up Python
28- uses : actions/setup-python@v5
28+ uses : actions/setup-python@v6
2929 with :
3030 python-version : 3.13.x
3131 architecture : x64
6363 name : Source distribution - Python - deploy
6464 runs-on : ubuntu-latest
6565 steps :
66- - uses : actions/checkout@v5
66+ - uses : actions/checkout@v6
6767 - name : Set up Python
68- uses : actions/setup-python@v5
68+ uses : actions/setup-python@v6
6969 with :
7070 python-version : 3.13.x
7171 architecture : x64
Original file line number Diff line number Diff line change 1- FROM python:3.13-slim-buster AS base
1+ FROM python:3.13-slim-bullseye AS base
22
33WORKDIR /app
44
You can’t perform that action at this time.
0 commit comments