Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use ubuntu-22.04 on github runner #3005

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci_unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on: [pull_request, push, workflow_dispatch]
jobs:

ci_pytest:
runs-on: ubuntu-latest
name: Run unit tests on CI system
runs-on: ubuntu-22.04
name: Run unit tests on CI system
permissions:
checks: write

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
permissions:
pull-requests: 'write'

runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Build and deploy documentation

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hera.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:

getlabels:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
labels: ${{ steps.id.outputs.labels }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defaults:

jobs:
lint-shell:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

permissions:
security-events: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/orion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:

getlabels:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
labels: ${{ steps.id.outputs.labels }}
steps:
Expand All @@ -27,7 +27,7 @@ jobs:

passed:
if: contains( needs.getlabels.outputs.labels, 'CI-Orion-Passed') && github.event.pull_request.merged
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- getlabels

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pynorms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]

jobs:
check_norms:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Check Python coding norms with pycodestyle

steps:
Expand Down
Loading