Skip to content

Commit 0c1a64e

Browse files
(CAT-2296) Update github runner image to ubuntu-24.04
ubuntu-20.04 is not supported anymore: actions/runner-images#11101
1 parent cbda780 commit 0c1a64e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
Spec:
1111
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
1212
with:
13-
runs_on: "ubuntu-20.04"
13+
runs_on: "ubuntu-24.04"
1414
secrets: "inherit"
1515

1616
setup_matrix:
1717
name: "Setup Test Matrix"
1818
needs: "Spec"
19-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-24.04
2020
outputs:
2121
matrix: ${{ steps.get-matrix.outputs.matrix }}
2222

@@ -47,7 +47,7 @@ jobs:
4747
- setup_matrix
4848
if: ${{ needs.setup_matrix.outputs.matrix != '{}' }}
4949

50-
runs-on: ubuntu-20.04
50+
runs-on: ubuntu-24.04
5151
strategy:
5252
fail-fast: false
5353
matrix: ${{fromJson(needs.setup_matrix.outputs.matrix)}}

.github/workflows/nightly.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
Spec:
1010
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
1111
with:
12-
runs_on: "ubuntu-20.04"
12+
runs_on: "ubuntu-24.04"
1313
secrets: "inherit"
1414

1515
setup_matrix:
1616
name: "Setup Test Matrix"
1717
needs: "Spec"
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-24.04
1919
outputs:
2020
matrix: ${{ steps.get-matrix.outputs.matrix }}
2121

@@ -46,7 +46,7 @@ jobs:
4646
- setup_matrix
4747
if: ${{ needs.setup_matrix.outputs.matrix != '{}' }}
4848

49-
runs-on: ubuntu-20.04
49+
runs-on: ubuntu-24.04
5050
strategy:
5151
fail-fast: false
5252
matrix: ${{fromJson(needs.setup_matrix.outputs.matrix)}}

0 commit comments

Comments
 (0)