Skip to content

Commit

Permalink
CI: pin Ubuntu Linux to 20.04
Browse files Browse the repository at this point in the history
GitHub Actions now defaults to 22.04
  • Loading branch information
lovell committed Dec 2, 2022
1 parent 012d77c commit 76cf105
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
- { NAME: "libde265 (1) / x265 / dav1d / graphics", WITH_GRAPHICS: 1, WITH_X265: 1, WITH_DAV1D: 1, WITH_LIBDE265: 1 }
- { NAME: "libde265 (1) / x265 / aom / rav1e / graphics", WITH_GRAPHICS: 1, WITH_X265: 1, WITH_AOM: 1, WITH_RAV1E: 1, WITH_LIBDE265: 1 }
env: ${{ matrix.env }}
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cifuzz.yml
Expand Up @@ -2,7 +2,7 @@ name: CIFuzz
on: [pull_request]
jobs:
Fuzzing:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Build Fuzzers
id: build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- { NAME: "libde265 (1) / x265 / aom / graphics", WITH_GRAPHICS: 1, WITH_X265: 1, WITH_AOM: 1, WITH_LIBDE265: 1 }
- { NAME: "libde265 (2) / x265 / aom / graphics", WITH_GRAPHICS: 1, WITH_X265: 1, WITH_AOM: 1, WITH_LIBDE265: 2 }
env: ${{ matrix.env }}
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
scan:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
WITH_AOM: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/diagram.yml
Expand Up @@ -6,7 +6,7 @@ on:
- main
jobs:
get_data:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/emscripten.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
emscripten:
env:
EMSCRIPTEN_VERSION: 1.37.26
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
WITH_X265: 1
WITH_GRAPHICS: 1
GO: 1
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
cpplint:
env:
CPPLINT: 1
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand All @@ -29,7 +29,7 @@ jobs:
licenses:
env:
CHECK_LICENSES: 1
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
test:
env:
TESTS: 1
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 76cf105

Please sign in to comment.