File tree Expand file tree Collapse file tree 10 files changed +14
-14
lines changed Expand file tree Collapse file tree 10 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 66
77jobs :
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
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [ pull_request ]
55jobs :
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 ]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ permissions:
88jobs :
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
Original file line number Diff line number Diff line change 66jobs :
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
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [ pull_request ]
55jobs :
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
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [ pull_request ]
55jobs :
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
Original file line number Diff line number Diff line change 77jobs :
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
Original file line number Diff line number Diff line change 77jobs :
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 }}
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
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
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
Original file line number Diff line number Diff line change 88jobs :
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
Original file line number Diff line number Diff line change 1- FROM node:20
1+ FROM node:22
22RUN mkdir /workspace
33WORKDIR /workspace
You can’t perform that action at this time.
0 commit comments