Skip to content

Commit 22f1cb2

Browse files
committed
Merge branch 'master' into MODHAADM-141-vertx5
2 parents 8635007 + 1885deb commit 22f1cb2

2 files changed

Lines changed: 7 additions & 7 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

.github/workflows/release-maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,21 @@ jobs:
6060
-p ${{ secrets.FOLIO_REGISTRY_PASSWORD }}
6161
OK -S ${{ env.OK_SESSION }} -x
6262
- name: Login to GitHub Container Registry
63-
uses: docker/login-action@v3
63+
uses: docker/login-action@v4
6464
with:
6565
registry: ${{ env.CONTAINER_REGISTRY }}
6666
username: ${{ github.ACTOR }}
6767
password: ${{ secrets.GITHUB_TOKEN }}
6868
- name: Extract docker metadata
6969
id: meta
70-
uses: docker/metadata-action@v5
70+
uses: docker/metadata-action@v6
7171
with:
7272
images: ${{ env.CONTAINER_REGISTRY }}/${{ env.IMAGE_NAME }}
7373
labels: |
7474
org.opencontainers.image.vendor=Index Data LLC
7575
org.opencontainers.image.documentation=https://github.com/indexdata/localindices/tree/master/doc
7676
- name: Build and publish Docker image
77-
uses: docker/build-push-action@v6
77+
uses: docker/build-push-action@v7
7878
with:
7979
context: .
8080
push: true

0 commit comments

Comments
 (0)