Skip to content

Commit a6cbdc6

Browse files
committed
ci: update the ubuntu versio to latest
1 parent dd74853 commit a6cbdc6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717

1818
jobs:
1919
build:
20-
runs-on: ubuntu-18.04
20+
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout Commit
2323
uses: actions/checkout@v3
@@ -39,7 +39,7 @@ jobs:
3939
path: dist
4040
retention-days: 1
4141
static-analysis:
42-
runs-on: ubuntu-18.04
42+
runs-on: ubuntu-latest
4343
needs: build
4444
steps:
4545
- name: Checkout Commit
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
yarn run lint
6161
unit-test-scan:
62-
runs-on: ubuntu-18.04
62+
runs-on: ubuntu-latest
6363
needs: build
6464
steps:
6565
- name: Checkout Commit
@@ -84,7 +84,7 @@ jobs:
8484
SONAR_TOKEN: ${{ secrets.SONAR_CLOUD_TOKEN }}
8585
build-storybook:
8686
if: github.event_name == 'pull_request'
87-
runs-on: ubuntu-18.04
87+
runs-on: ubuntu-latest
8888
needs: build
8989
steps:
9090
- name: Checkout Commit
@@ -101,7 +101,7 @@ jobs:
101101
run: yarn run build-storybook --quiet
102102
release:
103103
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta'
104-
runs-on: ubuntu-18.04
104+
runs-on: ubuntu-latest
105105
needs: [static-analysis, unit-test-scan]
106106
steps:
107107
- name: Checkout Commit
@@ -131,7 +131,7 @@ jobs:
131131
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
132132
run: npx semantic-release
133133
publish-storybook:
134-
runs-on: ubuntu-18.04
134+
runs-on: ubuntu-latest
135135
needs: release
136136
steps:
137137
- name: Checkout Commit

0 commit comments

Comments
 (0)