File tree Expand file tree Collapse file tree 13 files changed +20
-20
lines changed
auto-approve/.github/workflows
auto-assign/.github/workflows
create-pull-request/.github/workflows
repository-dispatch/.github/workflows
slash-command-dispatch/.github/workflows Expand file tree Collapse file tree 13 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
# Checkout the pull request branch
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v4
13
13
with :
14
14
token : ${{ secrets.REPO_ACCESS_TOKEN }}
15
15
repository : ${{ github.event.client_payload.pull_request.head.repo.full_name }}
Original file line number Diff line number Diff line change 10
10
container : cloudposse/build-harness:slim-latest
11
11
steps :
12
12
# Checkout the pull request branch
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v4
14
14
with :
15
15
token : ${{ secrets.REPO_ACCESS_TOKEN }}
16
16
repository : ${{ github.event.client_payload.pull_request.head.repo.full_name }}
Original file line number Diff line number Diff line change 43
43
GITHUB_TOKEN : ${{ secrets.REPO_ACCESS_TOKEN }}
44
44
45
45
- name : " Checkout code for ChatOps"
46
- uses : actions/checkout@v3
46
+ uses : actions/checkout@v4
47
47
with :
48
48
token : ${{ secrets.REPO_ACCESS_TOKEN }}
49
49
repository : ${{ github.event.client_payload.pull_request.head.repo.full_name }}
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- name : Check out code
10
- uses : actions/checkout@v3
10
+ uses : actions/checkout@v4
11
11
12
12
- name : Setup nodejs
13
13
uses : actions/setup-node@v3
Original file line number Diff line number Diff line change 6
6
build-and-test :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v3
9
+ - uses : actions/checkout@v4
10
10
11
11
- name : setup node
12
12
uses : actions/setup-node@v3
Original file line number Diff line number Diff line change 22
22
outputs :
23
23
issue-number : ${{ steps.vars.outputs.issue-number }}
24
24
steps :
25
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
26
26
- uses : actions/setup-node@v3
27
27
with :
28
28
node-version : 16.x
54
54
matrix :
55
55
target : [built, committed]
56
56
steps :
57
- - uses : actions/checkout@v3
57
+ - uses : actions/checkout@v4
58
58
- if : matrix.target == 'built' || github.event_name == 'pull_request'
59
59
uses : actions/download-artifact@v3
60
60
with :
@@ -113,7 +113,7 @@ jobs:
113
113
needs : [test]
114
114
runs-on : ubuntu-latest
115
115
steps :
116
- - uses : actions/checkout@v3
116
+ - uses : actions/checkout@v4
117
117
- uses : actions/download-artifact@v3
118
118
with :
119
119
name : dist
Original file line number Diff line number Diff line change 18
18
echo "branch=$branch" >> $GITHUB_OUTPUT
19
19
20
20
# Checkout the branch to test
21
- - uses : actions/checkout@v3
21
+ - uses : actions/checkout@v4
22
22
with :
23
23
repository : ${{ steps.vars.outputs.repository }}
24
24
ref : ${{ steps.vars.outputs.branch }}
Original file line number Diff line number Diff line change 19
19
build :
20
20
runs-on : ubuntu-latest
21
21
steps :
22
- - uses : actions/checkout@v3
22
+ - uses : actions/checkout@v4
23
23
- uses : actions/setup-node@v3
24
24
with :
25
25
node-version : 16.x
46
46
matrix :
47
47
target : [built, committed]
48
48
steps :
49
- - uses : actions/checkout@v3
49
+ - uses : actions/checkout@v4
50
50
with :
51
51
ref : main
52
52
- if : matrix.target == 'built' || github.event_name == 'pull_request'
@@ -115,7 +115,7 @@ jobs:
115
115
needs : [test]
116
116
runs-on : ubuntu-latest
117
117
steps :
118
- - uses : actions/checkout@v3
118
+ - uses : actions/checkout@v4
119
119
- uses : actions/download-artifact@v3
120
120
with :
121
121
name : dist
Original file line number Diff line number Diff line change 6
6
createPullRequest :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v3
9
+ - uses : actions/checkout@v4
10
10
11
11
- name : Make changes to pull request
12
12
run : date +%s > report.txt
Original file line number Diff line number Diff line change 19
19
build :
20
20
runs-on : ubuntu-latest
21
21
steps :
22
- - uses : actions/checkout@v3
22
+ - uses : actions/checkout@v4
23
23
- uses : actions/setup-node@v3
24
24
with :
25
25
node-version : 16.x
45
45
matrix :
46
46
target : [built, committed]
47
47
steps :
48
- - uses : actions/checkout@v3
48
+ - uses : actions/checkout@v4
49
49
- if : matrix.target == 'built' || github.event_name == 'pull_request'
50
50
uses : actions/download-artifact@v3
51
51
with :
73
73
needs : [test]
74
74
runs-on : ubuntu-latest
75
75
steps :
76
- - uses : actions/checkout@v3
76
+ - uses : actions/checkout@v4
77
77
- uses : actions/download-artifact@v3
78
78
with :
79
79
name : dist
You can’t perform that action at this time.
0 commit comments