@@ -19,20 +19,20 @@ jobs:
1919 env :
2020 GITHUB_CONTEXT : ${{ toJSON(github) }}
2121 run : echo "$GITHUB_CONTEXT"
22- - uses : actions/checkout@v4
22+ - uses : actions/checkout@v6
2323 with :
2424 fetch-depth : 0
2525 submodules : recursive
2626 - name : Set up Java for publishing to Maven Central Repository OSS
27- uses : actions/setup-java@v4
27+ uses : actions/setup-java@v5
2828 with :
2929 java-version : ${{ github.event.workflow_run.head_branch == 'sustaining/5.4.x' && '8' || '11'}}
3030 distribution : ' temurin'
3131 server-id : ossrh
3232 server-username : MAVEN_USERNAME
3333 server-password : MAVEN_PASSWORD
3434 - name : Cache Maven packages
35- uses : actions/cache@v4
35+ uses : actions/cache@v5
3636 with :
3737 path : ~/.m2/repository
3838 key : ${{ runner.os }}-m2-repository-${{ hashFiles('**/pom.xml') }}
7171 target/checkout/openig-war/target/*.war
7272 target/checkout/openig-docker/target/Dockerfile*
7373
74- - uses : actions/checkout@v4
74+ - uses : actions/checkout@v6
7575 continue-on-error : true
7676 with :
7777 repository : ${{ github.repository }}.wiki
9393 git tag -f ${{ github.event.inputs.releaseVersion }}
9494 git push --quiet --force
9595 git push --quiet --force origin ${{ github.event.inputs.releaseVersion }}
96- - uses : actions/checkout@v4
96+ - uses : actions/checkout@v6
9797 continue-on-error : true
9898 with :
9999 repository : OpenIdentityPlatform/doc.openidentityplatform.org
@@ -113,14 +113,14 @@ jobs:
113113 needs :
114114 - release-maven
115115 steps :
116- - uses : actions/checkout@v4
116+ - uses : actions/checkout@v6
117117 with :
118118 ref : ${{ github.event.inputs.releaseVersion }}
119119 fetch-depth : 1
120120 submodules : recursive
121121 - name : Docker meta
122122 id : meta
123- uses : docker/metadata-action@v5
123+ uses : docker/metadata-action@v6
124124 with :
125125 images : |
126126 ${{ github.repository }}
@@ -129,22 +129,22 @@ jobs:
129129 type=raw,value=latest
130130 type=raw,value=${{ github.event.inputs.releaseVersion }}
131131 - name : Set up QEMU
132- uses : docker/setup-qemu-action@v3
132+ uses : docker/setup-qemu-action@v4
133133 - name : Set up Docker Buildx
134- uses : docker/setup-buildx-action@v3
134+ uses : docker/setup-buildx-action@v4
135135 - name : Login to DockerHub
136- uses : docker/login-action@v3
136+ uses : docker/login-action@v4
137137 with :
138138 username : ${{ secrets.DOCKER_USERNAME }}
139139 password : ${{ secrets.DOCKER_PASSWORD }}
140140 - name : Login to GHCR
141- uses : docker/login-action@v3
141+ uses : docker/login-action@v4
142142 with :
143143 registry : ghcr.io
144144 username : ${{ github.repository_owner }}
145145 password : ${{ secrets.GITHUB_TOKEN }}
146146 - name : Build and push image
147- uses : docker/build-push-action@v5
147+ uses : docker/build-push-action@v7
148148 continue-on-error : true
149149 with :
150150 context : ./openig-docker
0 commit comments