File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3434jobs :
3535 # === DETECT CHANGES ===
3636 detect-changes :
37- runs-on : ubuntu-latest
37+ runs-on : ubuntu-24.04
3838 outputs :
3939 docker-changed : ${{ steps.changes.outputs.docker }}
4040 scripts-changed : ${{ steps.changes.outputs.scripts }}
@@ -113,7 +113,7 @@ jobs:
113113
114114 # === BUILD AND TEST DOCKER IMAGE (PR) ===
115115 docker-build-test :
116- runs-on : ubuntu-latest
116+ runs-on : ubuntu-24.04
117117 needs : [detect-changes]
118118 if : github.event_name == 'pull_request' && needs.detect-changes.outputs.should-build == 'true'
119119
@@ -191,7 +191,7 @@ jobs:
191191
192192 # === BUILD AND PUSH DOCKER IMAGE (MAIN) ===
193193 docker-build-push :
194- runs-on : ubuntu-latest
194+ runs-on : ubuntu-24.04
195195 needs : [detect-changes]
196196 # Run on push to main with changes, OR on workflow_dispatch with force_build
197197 if : |
@@ -322,7 +322,7 @@ jobs:
322322
323323 # === CREATE MULTI-ARCH MANIFEST ===
324324 docker-manifest :
325- runs-on : ubuntu-latest
325+ runs-on : ubuntu-24.04
326326 needs : [detect-changes, docker-build-push, docker-build-push-arm64]
327327 if : |
328328 (github.event_name == 'push' && github.ref == 'refs/heads/main') ||
@@ -388,7 +388,7 @@ jobs:
388388
389389 # === CREATE GITHUB RELEASE ===
390390 create-release :
391- runs-on : ubuntu-latest
391+ runs-on : ubuntu-24.04
392392 needs : [detect-changes, docker-manifest]
393393 if : |
394394 (github.event_name == 'push' && github.ref == 'refs/heads/main') ||
You can’t perform that action at this time.
0 commit comments