Skip to content

Commit

Permalink
ci: do not use "latest" images
Browse files Browse the repository at this point in the history
Use stable images for reproducibility. Well, reproducible as long as
github does not change the images, which they do...
  • Loading branch information
vthib committed Jun 17, 2023
1 parent 9f82fb4 commit 6efde30
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
test-linux:
name: Test ${{matrix.build}}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Install openssl x86 and 32 support for gcc
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:

test-windows:
name: Test ${{matrix.build}}
runs-on: windows-latest
runs-on: windows-2022

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:

clippy:
name: Clippy
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -112,7 +112,7 @@ jobs:

rustmt:
name: Rustfmt
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -122,14 +122,14 @@ jobs:

deny:
name: Deny
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1

coverage:
name: Coverage
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
CARGO_TERM_COLOR: always
steps:
Expand All @@ -150,7 +150,7 @@ jobs:

msrv:
name: Rust 1.62.0
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
Expand Down

0 comments on commit 6efde30

Please sign in to comment.