Skip to content

Commit ba9f637

Browse files
Upgrade workflow agents from 22.04 to 24.04
1 parent e4fa915 commit ba9f637

File tree

5 files changed

+25
-26
lines changed

5 files changed

+25
-26
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,34 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [ main ]
8+
branches: [main]
99
schedule:
10-
- cron: '17 5 * * 2'
10+
- cron: "17 5 * * 2"
1111

1212
jobs:
1313
analyze:
1414
name: Analyze
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
permissions:
1717
actions: read
1818
contents: read
1919
security-events: write
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
language: [ 'javascript' ]
23+
language: ["javascript"]
2424

2525
steps:
26-
- name: Checkout repository
27-
uses: actions/checkout@v4
28-
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@v3
30-
with:
31-
languages: ${{ matrix.language }}
32-
- name: Autobuild
33-
uses: github/codeql-action/autobuild@v3
34-
- name: Perform CodeQL Analysis
35-
uses: github/codeql-action/analyze@v3
36-
26+
- name: Checkout repository
27+
uses: actions/checkout@v4
28+
- name: Initialize CodeQL
29+
uses: github/codeql-action/init@v3
30+
with:
31+
languages: ${{ matrix.language }}
32+
- name: Autobuild
33+
uses: github/codeql-action/autobuild@v3
34+
- name: Perform CodeQL Analysis
35+
uses: github/codeql-action/analyze@v3

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
publish:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- uses: actions/checkout@v4
1212
with:

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
update_release_draft:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
# Drafts your next Release notes as Pull Requests are merged into "main"
1616
- uses: release-drafter/release-drafter@v5

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
jobs:
2222
detect-modules:
2323
name: Detect packages to check
24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-24.04
2525
outputs:
2626
modules: ${{ steps.set-modified-modules.outputs.modules }}
2727
modules_count: ${{ steps.set-modified-modules-count.outputs.modules_count }}
@@ -57,15 +57,15 @@ jobs:
5757
fail-fast: true
5858
matrix:
5959
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
60-
runs-on: ubuntu-22.04
60+
runs-on: ubuntu-24.04
6161
steps:
6262
- name: Code checkout
6363
uses: actions/checkout@v4
6464
- name: Install Node and Dependencies
6565
id: npm-install
6666
uses: ./.github/actions/npm-setup
6767
with:
68-
runner: ubuntu-22.04
68+
runner: ubuntu-24.04
6969
node-version: 22.x
7070
workspace: "${{ matrix.module }}"
7171
- name: Code linting
@@ -82,7 +82,7 @@ jobs:
8282
strategy:
8383
fail-fast: true
8484
matrix:
85-
runner: [ubuntu-22.04]
85+
runner: [ubuntu-24.04]
8686
node-version: [18.x, 20.x, 22.x]
8787
runs-on: ${{ matrix.runner }}
8888
steps:
@@ -119,7 +119,7 @@ jobs:
119119
node-version: [18.x, 20.x, 22.x]
120120
uses: ./.github/workflows/test-template.yml
121121
with:
122-
runner: ubuntu-22.04
122+
runner: ubuntu-24.04
123123
node-version: ${{ matrix.node-version }}
124124
container-runtime: docker
125125
workspace: "${{ matrix.module }}"
@@ -139,7 +139,7 @@ jobs:
139139
node-version: [18.x, 20.x, 22.x]
140140
uses: ./.github/workflows/test-template.yml
141141
with:
142-
runner: ubuntu-22.04
142+
runner: ubuntu-24.04
143143
node-version: ${{ matrix.node-version }}
144144
container-runtime: podman
145145
workspace: "${{ matrix.module }}"
@@ -153,7 +153,7 @@ jobs:
153153
- smoke-test
154154
- test
155155
- test-podman
156-
runs-on: ubuntu-22.04
156+
runs-on: ubuntu-24.04
157157
steps:
158158
- name: Check if any jobs failed
159159
if: ${{ failure() || cancelled() }}

.github/workflows/windows-test-command-dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
windows-test-command-dispatch:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010

1111
steps:
1212
- name: Dispatch windows-test command

0 commit comments

Comments
 (0)