Revert "Use ubuntu-20.04 instead of ubuntu-latest"

This reverts commit f170b1f01a.
This commit is contained in:
Philipp Krones 2022-12-07 12:29:13 +01:00
parent d18f31efa3
commit bb6a0aa8ed
No known key found for this signature in database
GPG Key ID: 1CA0DF2AF59D68A5
2 changed files with 10 additions and 10 deletions

View File

@ -30,7 +30,7 @@ env:
jobs: jobs:
base: base:
# NOTE: If you modify this job, make sure you copy the changes to clippy_bors.yml # NOTE: If you modify this job, make sure you copy the changes to clippy_bors.yml
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
steps: steps:
# Setup # Setup

View File

@ -19,7 +19,7 @@ defaults:
jobs: jobs:
changelog: changelog:
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
steps: steps:
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
@ -53,12 +53,12 @@ jobs:
needs: changelog needs: changelog
strategy: strategy:
matrix: matrix:
os: [ubuntu-20.04, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
host: [x86_64-unknown-linux-gnu, i686-unknown-linux-gnu, x86_64-apple-darwin, x86_64-pc-windows-msvc] host: [x86_64-unknown-linux-gnu, i686-unknown-linux-gnu, x86_64-apple-darwin, x86_64-pc-windows-msvc]
exclude: exclude:
- os: ubuntu-20.04 - os: ubuntu-latest
host: x86_64-apple-darwin host: x86_64-apple-darwin
- os: ubuntu-20.04 - os: ubuntu-latest
host: x86_64-pc-windows-msvc host: x86_64-pc-windows-msvc
- os: macos-latest - os: macos-latest
host: x86_64-unknown-linux-gnu host: x86_64-unknown-linux-gnu
@ -147,7 +147,7 @@ jobs:
metadata_collection: metadata_collection:
needs: changelog needs: changelog
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
steps: steps:
# Setup # Setup
@ -166,7 +166,7 @@ jobs:
integration_build: integration_build:
needs: changelog needs: changelog
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
steps: steps:
# Setup # Setup
@ -224,7 +224,7 @@ jobs:
- 'rust-lang-nursery/failure' - 'rust-lang-nursery/failure'
- 'rust-lang/log' - 'rust-lang/log'
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
steps: steps:
# Setup # Setup
@ -265,7 +265,7 @@ jobs:
end-success: end-success:
name: bors test finished name: bors test finished
if: github.event.pusher.name == 'bors' && success() if: github.event.pusher.name == 'bors' && success()
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
needs: [changelog, base, metadata_collection, integration_build, integration] needs: [changelog, base, metadata_collection, integration_build, integration]
steps: steps:
@ -275,7 +275,7 @@ jobs:
end-failure: end-failure:
name: bors test finished name: bors test finished
if: github.event.pusher.name == 'bors' && (failure() || cancelled()) if: github.event.pusher.name == 'bors' && (failure() || cancelled())
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
needs: [changelog, base, metadata_collection, integration_build, integration] needs: [changelog, base, metadata_collection, integration_build, integration]
steps: steps: