Skip to content

Commit

Permalink
Use ubuntu-22.04 on github runner (NOAA-EMC#3005)
Browse files Browse the repository at this point in the history
This PR reverts to `ubuntu-22.04` image of the GH runner.
`ubuntu-latest` is having an issue with python pip.
  • Loading branch information
aerorahul authored Oct 15, 2024
1 parent ac3cde5 commit e1fcce1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
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

0 comments on commit e1fcce1

Please sign in to comment.