Skip to content

Commit d5ff8c3

Browse files
authored
Revert "Update GHA runner image to latest Ubuntu (#5761)" (#5766)
This reverts commit 017d937. Necessary to fix CI for the Azure module.
1 parent 62fc6a9 commit d5ff8c3

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/ci-docker-wormhole.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
in-docker_test:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-18.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Build with Gradle

.github/workflows/ci-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
find_gradle_jobs:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-18.04
1919
outputs:
2020
matrix: ${{ steps.set-matrix.outputs.matrix }}
2121
steps:
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix: ${{ fromJson(needs.find_gradle_jobs.outputs.matrix) }}
48-
runs-on: ubuntu-latest
48+
runs-on: ubuntu-18.04
4949
steps:
5050
- uses: actions/checkout@v3
5151
- uses: actions/setup-java@v3

.github/workflows/ci-rootless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
test:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-18.04
1313
strategy:
1414
fail-fast: false
1515
matrix:

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- id: thundra_test_initializer
2424
uses: thundra-io/thundra-test-init-action@v1
2525
find_gradle_jobs:
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-18.04
2727
outputs:
2828
matrix: ${{ steps.set-matrix.outputs.matrix }}
2929
steps:
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
fail-fast: false
5353
matrix: ${{ fromJson(needs.find_gradle_jobs.outputs.matrix) }}
54-
runs-on: ubuntu-latest
54+
runs-on: ubuntu-18.04
5555
steps:
5656
- uses: actions/checkout@v3
5757
- uses: actions/setup-java@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
release:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-18.04
1717
steps:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-java@v3

.github/workflows/update-docs-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: write # for peter-evans/create-pull-request to create branch
1414
pull-requests: write # for peter-evans/create-pull-request to create a PR
1515
if: github.repository == 'testcontainers/testcontainers-java'
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-18.04
1717
steps:
1818
- uses: actions/checkout@v3
1919
with:

0 commit comments

Comments
 (0)