1010 test :
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v3
14- - uses : actions/setup-python@v4
13+ - uses : actions/checkout@v6
14+ - uses : actions/setup-python@v6
1515 with :
1616 python-version : ' 3.10'
1717
3232 - test
3333 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
3434 steps :
35- - uses : actions/checkout@v3
36- - uses : actions/setup-python@v4
35+ - uses : actions/checkout@v6
36+ - uses : actions/setup-python@v6
3737 with :
3838 python-version : ' 3.10'
3939
@@ -55,11 +55,11 @@ jobs:
5555 if : github.event_name == 'push' && (startsWith(github.ref, 'refs/tags') || github.ref == 'main')
5656 steps :
5757 - name : Check out the repo
58- uses : actions/checkout@v3
58+ uses : actions/checkout@v6
5959
6060 - name : Extract metadata (tags, labels) for Docker
6161 id : meta
62- uses : docker/metadata-action@v4.6 .0
62+ uses : docker/metadata-action@v5.10 .0
6363 with :
6464 # list of Docker images to use as base name for tags
6565 images : |
@@ -84,14 +84,14 @@ jobs:
8484
8585 - name : Login to GHCR
8686 if : github.event_name == 'push' && (startsWith(github.ref, 'refs/tags') || github.ref == 'main')
87- uses : docker/login-action@v2
87+ uses : docker/login-action@v3
8888 with :
8989 registry : ghcr.io
9090 username : ${{ github.repository_owner }}
9191 password : ${{ secrets.GITHUB_TOKEN }}
9292
9393 - name : Build and push master Docker image
94- uses : docker/build-push-action@v3.3.1
94+ uses : docker/build-push-action@v6.18.0
9595 with :
9696 context : .
9797 push : ${{ github.event_name == 'push' && (startsWith(github.ref, 'refs/tags') || github.ref == 'main') }}
0 commit comments