.github: switch to ubuntu-20.04
As the team obsessed with immutable test dependencies, how could we use the ubuntu-latest VM which can change at any time? Speaking of changes to ubuntu-latest... It will soon be updated from ubuntu 18.04 to 20.04 [1]. This commit switches our testing pipeline to use ubuntu-20.04 to: 1) make our test dependencies immutable (or at least slightly more immutable) 2) make us prepared for the ubuntu-latest changes. [1]: https://github.com/actions/virtual-environments/issues/1816 Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
parent
4e70a291b1
commit
e8ae7e7cae
1 changed files with 3 additions and 3 deletions
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
|
|
@ -13,7 +13,7 @@ on:
|
|||
jobs:
|
||||
lint:
|
||||
name: "🛃 Checks"
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
|
||||
- name: Set up Go 1.13
|
||||
|
|
@ -55,7 +55,7 @@ jobs:
|
|||
|
||||
shellcheck:
|
||||
name: "🐚 Shellcheck"
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run ShellCheck
|
||||
|
|
@ -67,7 +67,7 @@ jobs:
|
|||
|
||||
rpmlint:
|
||||
name: "📦 RPMlint"
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-20.04
|
||||
container: registry.fedoraproject.org/fedora:33
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue