@@ -10,10 +10,10 @@ jobs:
1010 name : ' Test before deploy'
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v2
13+ - uses : actions/checkout@v3
1414
1515 - name : Set up Python 3.11
16- uses : actions/setup-python@v2
16+ uses : actions/setup-python@v4
1717 with :
1818 python-version : 3.11
1919
@@ -52,24 +52,24 @@ jobs:
5252 needs : [ test ]
5353 steps :
5454 - name : " Checkout repository"
55- uses : actions/checkout@v2
55+ uses : actions/checkout@v3
5656
5757 - name : " Set up QEMU"
58- uses : docker/setup-qemu-action@v1
58+ uses : docker/setup-qemu-action@v3
5959
6060 - name : " Set up Docker Buildx"
61- uses : docker/setup-buildx-action@v1
61+ uses : docker/setup-buildx-action@v3
6262
6363 - name : " Login to GitHub Registry"
64- uses : docker/login-action@v1
64+ uses : docker/login-action@v3
6565 with :
6666 registry : ghcr.io
6767 username : ${{ github.actor }}
6868 password : ${{ secrets.GITHUB_TOKEN }}
6969
7070 - name : Docker meta
7171 id : meta
72- uses : docker/metadata-action@v4
72+ uses : docker/metadata-action@v5
7373 with :
7474 images : ghcr.io/procollab-github/api
7575 flavor : latest=true
7878 type=ref,event=pr
7979 type=semver,pattern={{version}}
8080 - name : Build and push container
81- uses : docker/build-push-action@v3
81+ uses : docker/build-push-action@v5
8282 with :
8383 context : .
8484 file : Dockerfile
0 commit comments