File tree Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 10
10
axe :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v4
13
+ - uses : actions/checkout@v5
14
14
with :
15
15
fetch-depth : 0
16
16
- name : Get changed files
Original file line number Diff line number Diff line change 8
8
stylelint :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v4
11
+ - uses : actions/checkout@v5
12
12
- uses : actions/setup-node@v4
13
13
with :
14
14
node-version : 18
19
19
run : npm run stylelint:fix
20
20
- name : Push up any fixes
21
21
if : ${{ github.event_name == 'pull_request' }}
22
- uses : stefanzweifel/git-auto-commit-action@v5
22
+ uses : stefanzweifel/git-auto-commit-action@v6
23
23
with :
24
24
commit_message : Fixing stylelint issues
25
25
commit_user_name : GitHub Design Engineering Bot
30
30
eslint :
31
31
runs-on : ubuntu-latest
32
32
steps :
33
- - uses : actions/checkout@v4
33
+ - uses : actions/checkout@v5
34
34
- uses : actions/setup-node@v4
35
35
with :
36
36
node-version : 18
42
42
test :
43
43
runs-on : ubuntu-latest
44
44
steps :
45
- - uses : actions/checkout@v4
45
+ - uses : actions/checkout@v5
46
46
- uses : actions/setup-node@v4
47
47
with :
48
48
node-version : 18
Original file line number Diff line number Diff line change 38
38
39
39
steps :
40
40
- name : Checkout repository
41
- uses : actions/checkout@v4
41
+ uses : actions/checkout@v5
42
42
43
43
# Initializes the CodeQL tools for scanning.
44
44
- name : Initialize CodeQL
Original file line number Diff line number Diff line change 30
30
runs-on : ubuntu-latest
31
31
needs : deploy
32
32
steps :
33
- - uses : actions/checkout@v4
33
+ - uses : actions/checkout@v5
34
34
35
35
36
36
name : Create GitHub deployment for storybook
Original file line number Diff line number Diff line change 23
23
# If it's 0, we deploy.
24
24
should_deploy : ${{ steps.changeset-count.outputs.change_count == 0 }}
25
25
steps :
26
- - uses : actions/checkout@v4
26
+ - uses : actions/checkout@v5
27
27
28
28
- id : changeset-count
29
29
run : echo "::set-output name=change_count::$(ls .changeset/*.md | grep -v README | wc -l | xargs)"
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout repository
15
- uses : actions/checkout@v4
15
+ uses : actions/checkout@v5
16
16
with :
17
17
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
18
18
fetch-depth : 0
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout repository
15
- uses : actions/checkout@v4
15
+ uses : actions/checkout@v5
16
16
with :
17
17
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
18
18
fetch-depth : 0
Original file line number Diff line number Diff line change 16
16
runs-on : ubuntu-latest
17
17
steps :
18
18
- name : Checkout repository
19
- uses : actions/checkout@v4
19
+ uses : actions/checkout@v5
20
20
21
21
- name : Set up Node.js
22
22
uses : actions/setup-node@v4
56
56
- if : " contains(github.event.pull_request.labels.*.name, 'skip changeset')"
57
57
run : echo "passed"; exit 0;
58
58
- if : " !contains(github.event.pull_request.labels.*.name, 'skip changeset')"
59
- uses : actions/checkout@v4
59
+ uses : actions/checkout@v5
60
60
with :
61
61
ref : ${{ github.event.pull_request.head.sha }}
62
62
- if : " !contains(github.event.pull_request.labels.*.name, 'skip changeset')"
67
67
needs : release-template
68
68
runs-on : ubuntu-latest
69
69
steps :
70
- - uses : actions/checkout@v4
70
+ - uses : actions/checkout@v5
71
71
- uses : actions/setup-node@v4
72
72
with :
73
73
node-version : 18
You can’t perform that action at this time.
0 commit comments