File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 4040 description : " GitHub App private key with access to posit-dev repositories"
4141 required : true
4242
43+ env :
44+ DEFAULT_RUNNER : ubuntu-latest
45+ AMD64_RUNNER : ubuntu-latest-4x
46+ ARM64_RUNNER : ubuntu-24.04-arm64-4-core
47+
4348defaults :
4449 run :
4550 shell : bash
4651
4752jobs :
4853 matrix :
4954 name : Image Matrix
50- runs-on : ubuntu-24.04
55+ runs-on : ${{ env.DEFAULT_RUNNER }}
5156 outputs :
5257 platform-matrix : ${{ steps.images-by-platform.outputs.platform_matrix }}
5358 versions-matrix : ${{ steps.images-by-version.outputs.versions_matrix }}
8994 fail-fast : false
9095 matrix :
9196 img : ${{ fromJson(needs.matrix.outputs.platform-matrix) }}
92- runs-on : ${{ matrix.img.platform == 'linux/arm64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
97+ runs-on : ${{ matrix.img.platform == 'linux/arm64' && env.ARM64_RUNNER || env.AMD64_RUNNER }}
9398
9499 steps :
95100 - name : Checkout
@@ -186,7 +191,7 @@ jobs:
186191 fail-fast : false
187192 matrix :
188193 img : ${{ fromJson(needs.matrix.outputs.versions-matrix) }}
189- runs-on : ubuntu-24.04
194+ runs-on : ${{ env.DEFAULT_RUNNER }}
190195
191196 steps :
192197 - name : Checkout
You can’t perform that action at this time.
0 commit comments