1515 runs-on : ubuntu-24.04
1616
1717 steps :
18- - uses : actions/checkout@v5
18+ - uses : actions/checkout@v6
1919 with :
2020 fetch-depth : 0 # Required to fetch version
2121
5050 EXECUTE_RELEASE : ${{ steps.execute-release.outputs.EXECUTE_RELEASE }}
5151
5252 steps :
53- - uses : actions/checkout@v5
53+ - uses : actions/checkout@v6
5454 with :
5555 fetch-depth : 0 # Required to fetch version
5656 persist-credentials : false
@@ -105,7 +105,7 @@ jobs:
105105 if : needs.release-guard.outputs.EXECUTE_RELEASE == 'true'
106106
107107 steps :
108- - uses : actions/checkout@v5
108+ - uses : actions/checkout@v6
109109 with :
110110 fetch-depth : 0 # Required to fetch version
111111 persist-credentials : false
@@ -155,7 +155,7 @@ jobs:
155155 runs-on : ubuntu-24.04-arm
156156
157157 steps :
158- - uses : actions/checkout@v5
158+ - uses : actions/checkout@v6
159159 with :
160160 persist-credentials : false
161161
@@ -185,7 +185,7 @@ jobs:
185185 IMAGE_NAME : ${{ github.repository }}
186186
187187 steps :
188- - uses : actions/checkout@v5
188+ - uses : actions/checkout@v6
189189 with :
190190 persist-credentials : false
191191
@@ -212,7 +212,8 @@ jobs:
212212 latest=auto
213213 tags : |
214214 type=semver,pattern={{version}},value=${{ needs.release-guard.outputs.RELEASE_VERSION }}
215- type=raw,value=production-latest
215+ type=raw,value=production-latest,enable=${{ startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-') }}
216+ type=raw,value=staging-latest,enable=${{ startsWith(github.ref, 'refs/tags/v') && contains(github.ref, '-') }}
216217 type=sha,format=long
217218 labels : |
218219 org.opencontainers.image.vendor="Cheqd Foundation Limited"
0 commit comments