Skip to content

Commit 05ade8f

Browse files
committed
Pin GitHub actions to Ubuntu 20.04
The Ubuntu 22.04 runners include ShellCheck v0.8 which has new rules. Issue: [sc-13394]
1 parent dc15244 commit 05ade8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
go-test:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-20.04
1414
steps:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-go@v3
@@ -20,7 +20,7 @@ jobs:
2020
- run: make check-generate
2121

2222
kubernetes-api:
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-20.04
2424
needs: [go-test]
2525
strategy:
2626
fail-fast: false
@@ -46,7 +46,7 @@ jobs:
4646

4747
kubernetes-k3d:
4848
if: "${{ github.repository == 'CrunchyData/postgres-operator' }}"
49-
runs-on: ubuntu-latest
49+
runs-on: ubuntu-20.04
5050
needs: [go-test]
5151
strategy:
5252
fail-fast: false

0 commit comments

Comments
 (0)