workflows: Pin runner

Pin the runner so we don't accidentally bump
and cause issues in the CI when GitHub updates

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
stevenhorsman
2024-10-29 14:50:07 +00:00
parent 8a742bafa5
commit 6414946fee
3 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ on:
jobs:
pr_wip_check:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: WIP Check
steps:
- name: WIP Check

View File

@@ -1,5 +1,5 @@
name: DCO check
on:
on:
pull_request:
types:
- opened
@@ -8,7 +8,7 @@ on:
jobs:
dco_check_job:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: DCO Check
steps:
- name: Get PR Commits

View File

@@ -2,7 +2,7 @@ on: ["pull_request"]
name: Static checks
jobs:
static-checks:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
GOPATH: ${{ github.workspace }}
steps: