Skip to content

Commit 40fb25c

Browse files
committed
Switch GitHub Action to use ubuntu-latest.
The version 20.04 was deprecated and it is not possible to run it at all See actions/runner-images#11101 Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 9d2051f commit 40fb25c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-and-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build-and-push:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
if: github.repository_owner == 'sclorg'
1313
strategy:
1414
fail-fast: false

.github/workflows/container-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
container-tests:
77
# This job only runs for '[test]' pull request comments by owner, member
88
name: "Container tests: ${{ matrix.version }} - ${{ matrix.os_test }}"
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
concurrency:
1111
group: container-${{ github.event.issue.number }}-${{ matrix.version }}-${{ matrix.os_test }}
1212
cancel-in-progress: true

.github/workflows/container-upstream-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
- created
55
jobs:
66
container-tests:
7-
# This job only runs for '[test]' pull request comments by owner, member
7+
# This job only runs for '[test-upstream]' pull request comments by owner, member
88
name: "Container Upstream Tests ${{ matrix.version }} - ${{ matrix.os_test }}"
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
concurrency:
1111
group: container-upstream-${{ github.event.issue.number }}-${{ matrix.version }}-${{ matrix.os_test }}
1212
cancel-in-progress: true

0 commit comments

Comments
 (0)