Go back to 22.04
This commit is contained in:
parent
b5d5ef523a
commit
0c255ab302
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -11,7 +11,7 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# Needed for tests to pass
|
# Needed for tests to pass
|
||||||
|
@ -48,7 +48,7 @@ jobs:
|
||||||
args: --workspace --verbose
|
args: --workspace --verbose
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
@ -67,7 +67,7 @@ jobs:
|
||||||
args: --all -- --check
|
args: --all -- --check
|
||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
2
.github/workflows/extra.yml
vendored
2
.github/workflows/extra.yml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
||||||
# Need to have the same name as where this dependency is used,
|
# Need to have the same name as where this dependency is used,
|
||||||
# otherwise the cache key won't be the same.
|
# otherwise the cache key won't be the same.
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# build and cache this here in order to reuse it's cache in feature branches
|
# build and cache this here in order to reuse it's cache in feature branches
|
||||||
|
|
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -10,7 +10,7 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tag:
|
tag:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
should_publish: ${{ steps.create-and-push-tag.outputs.should_publish }}
|
should_publish: ${{ steps.create-and-push-tag.outputs.should_publish }}
|
||||||
|
@ -39,7 +39,7 @@ jobs:
|
||||||
echo "The result is: ${{ steps.create-and-push-tag.outputs.should_publish }}"
|
echo "The result is: ${{ steps.create-and-push-tag.outputs.should_publish }}"
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
needs: tag
|
needs: tag
|
||||||
if: ${{ needs.tag.outputs.should_publish == 'true' }}
|
if: ${{ needs.tag.outputs.should_publish == 'true' }}
|
||||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -9,7 +9,7 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
if: "startsWith(github.ref, 'refs/heads/create_release/')"
|
if: "startsWith(github.ref, 'refs/heads/create_release/')"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user