@@ -14,10 +14,10 @@ jobs:
1414 runs-on : ubuntu-latest
1515 steps :
1616 - name : Checkout project sources
17- uses : actions/checkout@v4
17+ uses : actions/checkout@v6
1818
1919 - name : Setup Java
20- uses : actions/setup-java@v4
20+ uses : actions/setup-java@v5
2121 with :
2222 java-version : ' 11'
2323 distribution : ' temurin'
@@ -26,14 +26,14 @@ jobs:
2626 run : mvn clean package -Dmaven.test.skip
2727
2828 - name : Upload war
29- uses : actions/upload-artifact@v4
29+ uses : actions/upload-artifact@v7
3030 with :
3131 name : package
3232 path : ala-sensitive-data-server/target/ala-sensitive-data-server-[0-9].[0-9].jar
3333
3434 - name : Log in to the Container registry
3535 if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
36- uses : docker/login-action@v3
36+ uses : docker/login-action@v4
3737 with :
3838 registry : ghcr.io
3939 username : ${{ github.actor }}
@@ -42,13 +42,13 @@ jobs:
4242 - name : Extract metadata (tags, labels) for Docker
4343 if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
4444 id : meta
45- uses : docker/metadata-action@v5
45+ uses : docker/metadata-action@v6
4646 with :
4747 images : ghcr.io/${{ github.repository }}
4848
4949 - name : Build and push Docker image
5050 if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
51- uses : docker/build-push-action@v6
51+ uses : docker/build-push-action@v7
5252 with :
5353 context : .
5454 push : true
0 commit comments