From bccb470809f937c1240a42684cbdd400b1425188 Mon Sep 17 00:00:00 2001 From: Eric Willigers Date: Tue, 1 Jul 2025 07:23:32 +1000 Subject: [PATCH] workflows use ubuntu-24.04 --- .github/workflows/ci.js.yml | 6 +++--- .github/workflows/format-code.yml | 2 +- .github/workflows/pr.ci.js.yml | 6 +++--- .github/workflows/verify-code-formatting.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.js.yml b/.github/workflows/ci.js.yml index bd0fae2..07efc68 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: @@ -42,7 +42,7 @@ jobs: run: yarn install --frozen-lockfile smoke_tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout code uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b diff --git a/.github/workflows/format-code.yml b/.github/workflows/format-code.yml index ad673fb..65edb9c 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 b680c6f..6e315ac 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: @@ -44,7 +44,7 @@ jobs: run: yarn install --frozen-lockfile smoke_tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout code uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b diff --git a/.github/workflows/verify-code-formatting.yml b/.github/workflows/verify-code-formatting.yml index b5acafb..d715f57 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