@@ -20,10 +20,10 @@ jobs:
2020
2121 steps :
2222 - name : Check out repository
23- uses : actions/checkout@v4
23+ uses : actions/checkout@v5
2424
2525 - name : Set up Python
26- uses : actions/setup-python@v5
26+ uses : actions/setup-python@v6
2727 with :
2828 python-version : ${{ env.PYTHON_VERSION }}
2929
@@ -46,10 +46,10 @@ jobs:
4646
4747 steps :
4848 - name : Check out repository
49- uses : actions/checkout@v4
49+ uses : actions/checkout@v5
5050
5151 - name : Set up Docker Buildx
52- uses : docker/setup-buildx-action@v3
52+ uses : docker/setup-buildx-action@v4
5353
5454 - name : Prepare image variables
5555 id : vars
@@ -74,14 +74,14 @@ jobs:
7474
7575 - name : Log in to Docker Hub
7676 if : github.event_name != 'pull_request' && github.ref_type == 'tag'
77- uses : docker/login-action@v3
77+ uses : docker/login-action@v4
7878 with :
7979 username : ${{ secrets.DOCKERHUB_USERNAME }}
8080 password : ${{ secrets.DOCKERHUB_TOKEN }}
8181
8282 - name : Extract Docker metadata
8383 id : meta
84- uses : docker/metadata-action@v5
84+ uses : docker/metadata-action@v6
8585 with :
8686 images : docker.io/${{ steps.vars.outputs.image_repository }}
8787 tags : |
9494
9595 - name : Build image
9696 if : github.ref_type != 'tag'
97- uses : docker/build-push-action@v6
97+ uses : docker/build-push-action@v7
9898 with :
9999 context : .
100100 file : ${{ env.DOCKERFILE_PATH }}
@@ -110,7 +110,7 @@ jobs:
110110
111111 - name : Build and push image
112112 if : github.ref_type == 'tag'
113- uses : docker/build-push-action@v6
113+ uses : docker/build-push-action@v7
114114 with :
115115 context : .
116116 file : ${{ env.DOCKERFILE_PATH }}
0 commit comments