Skip to content

Commit c1d0503

Browse files
committed
Update docker actions DEVOPS-2662
1 parent c4c4ce5 commit c1d0503

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/mvn-dev-build-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ jobs:
5454
echo "MODULE_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)-${SHA_SHORT}" >> $GITHUB_ENV
5555
5656
- name: Cache SonarCloud packages
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: ~/.sonar/cache
6060
key: ${{ runner.os }}-sonar
6161
restore-keys: ${{ runner.os }}-sonar
6262

6363
- name: Cache Maven packages
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: ~/.m2
6767
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -97,14 +97,14 @@ jobs:
9797

9898
- name: Login to Index Data Docker Hub account
9999
if: ${{ env.CURRENT_BRANCH == env.PUBLISH_BRANCH }}
100-
uses: docker/login-action@v3
100+
uses: docker/login-action@v4
101101
with:
102102
username: ${{ secrets.DOCKER_USER }}
103103
password: ${{ secrets.DOCKER_PASSWORD }}
104104

105105
- name: Build and publish Docker image
106106
if: ${{ env.CURRENT_BRANCH == env.PUBLISH_BRANCH }}
107-
uses: docker/build-push-action@v6
107+
uses: docker/build-push-action@v7
108108
with:
109109
context: .
110110
push: true

0 commit comments

Comments
 (0)