Skip to content

Commit 06eabee

Browse files
committed
GHA: Version updates for the docker build action
1 parent 8d8b521 commit 06eabee

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/deploy.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v2
1818

19-
- uses: actions/setup-node@v2
19+
- uses: actions/setup-node@v4
2020
with:
2121
node-version: "16"
2222

23-
- uses: actions/setup-java@v1
23+
- uses: actions/setup-java@v4
2424
with:
2525
java-version: 11
2626
server-id: openconext-releases
2727
server-username: MAVEN_USERNAME
2828
server-password: MAVEN_PASSWORD
2929

30-
- uses: actions/cache@v1
30+
- uses: actions/cache@v4
3131
with:
3232
path: ~/.m2/repository
3333
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -51,7 +51,7 @@ jobs:
5151
if: github.event_name != 'workflow_dispatch' && steps.versioncheck.outputs.version != github.ref_name
5252

5353
- name: Set up JDK 11 for snapshots
54-
uses: actions/setup-java@v3
54+
uses: actions/setup-java@v4
5555
with:
5656
java-version: "11"
5757
distribution: "temurin"
@@ -62,7 +62,7 @@ jobs:
6262
if: ( endsWith(steps.versioncheck.outputs.version, '-SNAPSHOT'))
6363

6464
- name: Set up JDK 11 for releases
65-
uses: actions/setup-java@v3
65+
uses: actions/setup-java@v4
6666
with:
6767
java-version: "11"
6868
distribution: "temurin"
@@ -79,10 +79,10 @@ jobs:
7979
MAVEN_PASSWORD: ${{ secrets.BUILD_PASSWORD }}
8080

8181
- name: Set up Docker Buildx
82-
uses: docker/setup-buildx-action@v2
82+
uses: docker/setup-buildx-action@v3
8383

8484
- name: Login to GitHub Container Registry
85-
uses: docker/login-action@v2
85+
uses: docker/login-action@v3
8686
with:
8787
registry: ghcr.io
8888
username: ${{ github.repository_owner }}
@@ -113,7 +113,7 @@ jobs:
113113
type=sha
114114
115115
- name: Build and push the mujina idp image
116-
uses: docker/build-push-action@v4
116+
uses: docker/build-push-action@v5
117117
with:
118118
context: mujina-idp
119119
file: mujina-idp/docker/Dockerfile
@@ -123,7 +123,7 @@ jobs:
123123
labels: ${{ steps.meta_idp.outputs.labels }}
124124

125125
- name: Build and push the mujina sp image
126-
uses: docker/build-push-action@v4
126+
uses: docker/build-push-action@v5
127127
with:
128128
context: mujina-sp
129129
file: mujina-sp/docker/Dockerfile

0 commit comments

Comments
 (0)