Skip to content

Commit f778425

Browse files
Update Github Workflows to use Ubuntu 24.04
1 parent 12a0808 commit f778425

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/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
analyze:
2525
name: Analyze
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-24.04
2727

2828
permissions:
2929
# required for all workflows

.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 }}
@@ -51,7 +51,7 @@ jobs:
5151
contents: write
5252
needs: [test_and_build]
5353
if: needs.test_and_build.outputs.version_changed == 'false'
54-
runs-on: ubuntu-20.04
54+
runs-on: ubuntu-24.04
5555
steps:
5656
- name: Draft release on GitHub
5757
uses: release-drafter/release-drafter@v6
@@ -62,7 +62,7 @@ jobs:
6262
name: Publish release draft
6363
needs: [test_and_build]
6464
if: needs.test_and_build.outputs.version_changed == 'true'
65-
runs-on: ubuntu-20.04
65+
runs-on: ubuntu-24.04
6666
steps:
6767
- name: Clone repository
6868
uses: actions/checkout@v4
@@ -86,7 +86,7 @@ jobs:
8686
name: Publish to npm
8787
needs: [test_and_build, publish_release_draft_on_version_bump]
8888
if: needs.test_and_build.outputs.version_changed == 'true'
89-
runs-on: ubuntu-20.04
89+
runs-on: ubuntu-24.04
9090
steps:
9191
- name: Clone repository
9292
uses: actions/checkout@v4
@@ -112,7 +112,7 @@ jobs:
112112
contents: write
113113
needs: [test_and_build, publish_release_draft_on_version_bump]
114114
if: needs.test_and_build.outputs.version_changed == 'true'
115-
runs-on: ubuntu-20.04
115+
runs-on: ubuntu-24.04
116116
steps:
117117
- name: Clone repository
118118
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

0 commit comments

Comments
 (0)