File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 17
17
18
18
jobs :
19
19
build :
20
- runs-on : ubuntu-18.04
20
+ runs-on : ubuntu-latest
21
21
steps :
22
22
- name : Checkout Commit
23
23
uses : actions/checkout@v3
39
39
path : dist
40
40
retention-days : 1
41
41
static-analysis :
42
- runs-on : ubuntu-18.04
42
+ runs-on : ubuntu-latest
43
43
needs : build
44
44
steps :
45
45
- name : Checkout Commit
59
59
run : |
60
60
yarn run lint
61
61
unit-test-scan :
62
- runs-on : ubuntu-18.04
62
+ runs-on : ubuntu-latest
63
63
needs : build
64
64
steps :
65
65
- name : Checkout Commit
84
84
SONAR_TOKEN : ${{ secrets.SONAR_CLOUD_TOKEN }}
85
85
build-storybook :
86
86
if : github.event_name == 'pull_request'
87
- runs-on : ubuntu-18.04
87
+ runs-on : ubuntu-latest
88
88
needs : build
89
89
steps :
90
90
- name : Checkout Commit
@@ -101,7 +101,7 @@ jobs:
101
101
run : yarn run build-storybook --quiet
102
102
release :
103
103
if : github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta'
104
- runs-on : ubuntu-18.04
104
+ runs-on : ubuntu-latest
105
105
needs : [static-analysis, unit-test-scan]
106
106
steps :
107
107
- name : Checkout Commit
@@ -131,7 +131,7 @@ jobs:
131
131
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
132
132
run : npx semantic-release
133
133
publish-storybook :
134
- runs-on : ubuntu-18.04
134
+ runs-on : ubuntu-latest
135
135
needs : release
136
136
steps :
137
137
- name : Checkout Commit
You can’t perform that action at this time.
0 commit comments