Skip to content

Commit

Permalink
testing: switch to new default ubuntu image
Browse files Browse the repository at this point in the history
  • Loading branch information
noahpb committed Dec 3, 2024
1 parent daebe9b commit 8b459b6
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on:

jobs:
title_check:
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: Validate PR Title
permissions:
pull-requests: read
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/compliance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ permissions:

jobs:
evaluate:
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: Evaluate
continue-on-error: true
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docs-shim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ on:

jobs:
lint-check:
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/lint-oscal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ permissions:
jobs:

check-oscal-paths:
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: OSCAL Change Detection
outputs:
oscal: ${{ steps.path-filter.outputs.oscal }}
Expand All @@ -39,7 +40,8 @@ jobs:
lint-oscal:
needs: check-oscal-paths
if: ${{ needs.check-oscal-paths.outputs.oscal == 'true' }}
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
# filter the files to remove not oscal files (such as those titles oscal-* under ./.github)
- name: Identify changed OSCAL files
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pull-request-conditionals.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ concurrency:

jobs:
lint-check:
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand All @@ -53,7 +54,8 @@ jobs:
# This job checks if there are changes in specific paths source packages.
check-paths:
needs: lint-check
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: Select Jobs
outputs:
packages: ${{ steps.path-filter.outputs.changes }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/slim-dev-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
# This job runs the slim-dev bundle create/deploy process.
test:
name: Test
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout the code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/snapshot-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
needs: publish-snapshot-release
env:
GH_TOKEN: ${{ github.token }}
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tag-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on:
jobs:
tag-new-version:
permissions: write-all
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
release_created: ${{ steps.release-flag.outputs.release_created }}
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-aks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
fail-fast: false
matrix:
flavor: [upstream, registry1, unicorn]
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
SHA: ${{ github.sha }}
UDS_REGION: centralus
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
fail-fast: false
matrix:
flavor: [upstream, registry1, unicorn]
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
SHA: ${{ github.sha }}
UDS_REGION: us-west-2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-rke2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
fail-fast: false
matrix:
flavor: [upstream, registry1, unicorn]
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
SHA: ${{ github.sha }}
UDS_REGION: us-west-2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-shim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ on:

jobs:
test:
runs-on: 'ubuntu-latest'
#runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: Test
steps:
- name: Skipped
Expand Down

0 comments on commit 8b459b6

Please sign in to comment.