66 build-extract :
77 runs-on : ubuntu-latest
88 steps :
9- - uses : actions/checkout@v4
9+ - uses : actions/checkout@v6
1010 - name : Build Docker Image
11- uses : docker/build-push-action@v5
11+ uses : docker/build-push-action@v7
1212 with :
1313 context : ./.github/tests
1414 tags : my-example-image:latest
@@ -20,21 +20,21 @@ jobs:
2020 path : /app/.
2121 destination : dist
2222 - name : Upload Dist
23- uses : actions/upload-artifact@v3
23+ uses : actions/upload-artifact@v7
2424 with :
2525 path : dist
2626 example-image :
2727 runs-on : ubuntu-latest
2828 steps :
29- - uses : actions/checkout@v4
29+ - uses : actions/checkout@v6
3030 - name : Login to GitHub Container Registry
31- uses : docker/login-action@v3
31+ uses : docker/login-action@v4
3232 with :
3333 registry : " ghcr.io"
3434 username : " ${{ github.actor }}"
3535 password : " ${{ secrets.GITHUB_TOKEN }}"
3636 - name : Build Docker Image
37- uses : docker/build-push-action@v5
37+ uses : docker/build-push-action@v7
3838 with :
3939 context : ./.github/tests
4040 push : true
4444 needs :
4545 - example-image
4646 steps :
47- - uses : actions/checkout@v4
47+ - uses : actions/checkout@v6
4848 - name : Login to GitHub Container Registry
49- uses : docker/login-action@v2
49+ uses : docker/login-action@v4
5050 with :
5151 registry : " ghcr.io"
5252 username : " ${{ github.actor }}"
5858 path : /app/.
5959 destination : dist
6060 - name : Upload Dist
61- uses : actions/upload-artifact@v3
61+ uses : actions/upload-artifact@v7
6262 with :
63+ overwrite : true
6364 path : dist
0 commit comments