File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11
11
# This job uses skip-duplicate-actions to skip one of the duplicate workflow runs when you push to a branch with an open PR.
12
12
check_duplicate_workflow :
13
13
needs : []
14
- runs-on : ubuntu-20 .04
14
+ runs-on : ubuntu-22 .04
15
15
outputs :
16
16
should_skip : ${{ steps.skip_check.outputs.should_skip }}
17
17
steps :
24
24
25
25
lint :
26
26
needs : [check_duplicate_workflow]
27
- runs-on : ubuntu-20 .04
27
+ runs-on : ubuntu-22 .04
28
28
if : ${{ needs.check_duplicate_workflow.outputs.should_skip != 'true' }}
29
29
steps :
30
30
- name : Check out repository code
40
40
41
41
build :
42
42
needs : [check_duplicate_workflow]
43
- runs-on : ubuntu-20 .04
43
+ runs-on : ubuntu-22 .04
44
44
if : ${{ needs.check_duplicate_workflow.outputs.should_skip != 'true' }}
45
45
steps :
46
46
- name : Check out repository code
62
62
63
63
test :
64
64
needs : [check_duplicate_workflow]
65
- runs-on : ubuntu-20 .04
65
+ runs-on : ubuntu-22 .04
66
66
if : ${{ needs.check_duplicate_workflow.outputs.should_skip != 'true' }}
67
67
env :
68
68
MOCHA_FILE : test-results/mocha/test-results.xml
90
90
91
91
release :
92
92
needs : [lint, build, test]
93
- runs-on : ubuntu-20 .04
93
+ runs-on : ubuntu-22 .04
94
94
if : ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta') }}
95
95
env :
96
96
NPM_TOKEN : ${{ secrets.NPM_TOKEN_ELASTICPATH }}
You can’t perform that action at this time.
0 commit comments