Skip to content

Commit 591decf

Browse files
Update Github Workflows to use ubuntu-24.04 instead of ubuntu-20.04
1 parent f06d985 commit 591decf

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

.github/workflows/broken-links-check.yml

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

77
jobs:
88
broken_link_check:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-24.04
1010
name: Check react-ui.io for broken links
1111
steps:
1212
- name: Check for broken links

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [ pull_request ]
55
jobs:
66
build:
77
name: Build distribution CSS and JS
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
strategy:
1010
matrix:
1111
node: [ 20, 22 ]

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
jobs:
99
build:
1010
name: Build Docs
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Clone repository
1414
uses: actions/checkout@v4

.github/workflows/external-links-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
broken_link_check:
88
name: Markdown link check
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- uses: actions/checkout@v4
1212
- uses: gaurav-nelson/github-action-markdown-link-check@v1

.github/workflows/git.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [ pull_request ]
55
jobs:
66
block-merge-with-autosquash-commits:
77
name: Block merge with autosquash commits
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99

1010
steps:
1111
- name: Block merge with autosquash commits

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [ pull_request ]
55
jobs:
66
lint:
77
name: Lint
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- name: Clone repository
1111
uses: actions/checkout@v4

.github/workflows/pull-request-meta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
process_pr_meta:
99
name: Process PR meta
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Assign to author
1313
uses: kentaro-m/[email protected] # Specify also the minor version because v2 does not exist

.github/workflows/release-management.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
test_and_build:
99
name: Test and build
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
outputs:
1212
version: ${{ steps.check_package_version.outputs.version }}
1313
version_changed: ${{ steps.check_package_version.outputs.changed }}
@@ -57,7 +57,7 @@ jobs:
5757
contents: write
5858
needs: [test_and_build]
5959
if: needs.test_and_build.outputs.version_changed == 'false'
60-
runs-on: ubuntu-20.04
60+
runs-on: ubuntu-24.04
6161
steps:
6262
- name: Draft release on GitHub
6363
uses: release-drafter/release-drafter@v6
@@ -68,7 +68,7 @@ jobs:
6868
name: Publish release draft
6969
needs: [test_and_build]
7070
if: needs.test_and_build.outputs.version_changed == 'true'
71-
runs-on: ubuntu-20.04
71+
runs-on: ubuntu-24.04
7272
steps:
7373
- name: Clone repository
7474
uses: actions/checkout@v4
@@ -92,7 +92,7 @@ jobs:
9292
name: Publish to npm
9393
needs: [test_and_build, publish_release_draft_on_version_bump]
9494
if: needs.test_and_build.outputs.version_changed == 'true'
95-
runs-on: ubuntu-20.04
95+
runs-on: ubuntu-24.04
9696
steps:
9797
- name: Clone repository
9898
uses: actions/checkout@v4
@@ -118,7 +118,7 @@ jobs:
118118
contents: write
119119
needs: [test_and_build, publish_release_draft_on_version_bump]
120120
if: needs.test_and_build.outputs.version_changed == 'true'
121-
runs-on: ubuntu-20.04
121+
runs-on: ubuntu-24.04
122122
steps:
123123
- name: Clone repository
124124
uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
test:
1010
name: Test
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Clone repository
1414
uses: actions/checkout@v4

docker/node/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM node:20
1+
FROM node:22
22
RUN mkdir /workspace
33
WORKDIR /workspace

0 commit comments

Comments
 (0)