Skip to content

Commit

Permalink
Changed CI to just run on ubuntu-latest
Browse files Browse the repository at this point in the history
If we already have to bump this version as GitHub phases out older
Ubuntu runners (which is reasonable), I don't really see the value of
pinning a specific version. We might as well just respond to any
broken dependencies caused by GitHub's implicit updates as they happen.

It's not like CI is truly continuous.
  • Loading branch information
geky committed Dec 20, 2023
1 parent e54f759 commit 7b53692
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:

jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
Expand All @@ -16,7 +16,7 @@ jobs:
make test
test-docs:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
Expand All @@ -25,7 +25,7 @@ jobs:
make docs
test-configs:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
Expand All @@ -34,7 +34,7 @@ jobs:
make test-configs
test-bench:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
Expand Down

0 comments on commit 7b53692

Please sign in to comment.