From b2bd9dd0b9405928ce79e1cc242c1d3729b58f73 Mon Sep 17 00:00:00 2001 From: Eric Willigers Date: Tue, 1 Jul 2025 08:56:47 +1000 Subject: [PATCH] workflows use ubuntu-24.04 --- .github/workflows/ci.js.yml | 6 +++--- .github/workflows/codeql.yml | 2 +- .github/workflows/format-code.yml | 2 +- .github/workflows/pr.ci.js.yml | 6 +++--- .github/workflows/verify-code-formatting.yml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.js.yml b/.github/workflows/ci.js.yml index 26e6bb6d..a4cd4faf 100644 --- a/.github/workflows/ci.js.yml +++ b/.github/workflows/ci.js.yml @@ -9,7 +9,7 @@ on: jobs: precheck: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 @@ -25,7 +25,7 @@ jobs: run: yarn lint unit_tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: @@ -48,7 +48,7 @@ jobs: run: yarn test:e2e smoke_tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout code uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a17a5439..e6a3ea30 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,7 +16,7 @@ on: jobs: analyze: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: fail-fast: false diff --git a/.github/workflows/format-code.yml b/.github/workflows/format-code.yml index ad673fb4..65edb9c1 100644 --- a/.github/workflows/format-code.yml +++ b/.github/workflows/format-code.yml @@ -7,7 +7,7 @@ on: jobs: format: name: 'Format code' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/format') steps: - name: 'Post acknowledgement that it will format code' diff --git a/.github/workflows/pr.ci.js.yml b/.github/workflows/pr.ci.js.yml index 8bf67a7e..f2d9678f 100644 --- a/.github/workflows/pr.ci.js.yml +++ b/.github/workflows/pr.ci.js.yml @@ -7,7 +7,7 @@ on: pull_request jobs: precheck: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout PR @@ -25,7 +25,7 @@ jobs: run: yarn lint unit_tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: @@ -50,7 +50,7 @@ jobs: run: yarn test:e2e smoke_tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout code uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 diff --git a/.github/workflows/verify-code-formatting.yml b/.github/workflows/verify-code-formatting.yml index c7f686d5..4878b89e 100644 --- a/.github/workflows/verify-code-formatting.yml +++ b/.github/workflows/verify-code-formatting.yml @@ -7,7 +7,7 @@ on: jobs: verify: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: 'Checkout code' uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5