7
7
steps :
8
8
- run : mkdir -p repos/undefx
9
9
- name : Checkout undefx/py3tester
10
- uses : actions/checkout@v3
10
+ uses : actions/checkout@v2
11
11
with :
12
12
repository : undefx/py3tester
13
13
path : repos/undefx/py3tester
14
14
- name : Checkout undefx/undef-analysis
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v2
16
16
with :
17
17
repository : undefx/undef-analysis
18
18
path : repos/undefx/undef-analysis
19
19
20
20
- run : mkdir -p repos/delphi
21
21
22
22
- name : Checkoutcmu-delphi/operations
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v2
24
24
with :
25
25
repository : cmu-delphi/operations
26
26
path : repos/delphi/operations
27
27
- name : Checkout cmu-delphi/utils
28
- uses : actions/checkout@v3
28
+ uses : actions/checkout@v2
29
29
with :
30
30
repository : cmu-delphi/utils
31
31
path : repos/delphi/utils
32
32
- name : Checkout cmu-delphi/github-deploy-repo
33
- uses : actions/checkout@v3
33
+ uses : actions/checkout@v2
34
34
with :
35
35
repository : cmu-delphi/github-deploy-repo
36
36
path : repos/delphi/github-deploy-repo
37
37
- name : Checkout THIS REPO
38
- uses : actions/checkout@v3
38
+ uses : actions/checkout@v2
39
39
with :
40
40
path : repos/delphi/delphi-epidata
41
41
- name : Checkout cmu-delphi/flu-contest
42
- uses : actions/checkout@v3
42
+ uses : actions/checkout@v2
43
43
with :
44
44
repository : cmu-delphi/flu-contest
45
45
path : repos/delphi/flu-contest
46
46
- name : Checkout cmu-delphi/nowcast
47
- uses : actions/checkout@v3
47
+ uses : actions/checkout@v2
48
48
with :
49
49
repository : cmu-delphi/nowcast
50
50
path : repos/delphi/nowcast
98
98
working-directory : src/client/packaging/npm
99
99
steps :
100
100
- name : Checkout
101
- uses : actions/checkout@v3
101
+ uses : actions/checkout@v2
102
102
- uses : actions/setup-node@v2
103
103
with :
104
104
node-version : ' 14.x'
@@ -121,7 +121,7 @@ jobs:
121
121
runs-on : ubuntu-latest
122
122
steps :
123
123
- name : Check out code
124
- uses : actions/checkout@v3
124
+ uses : actions/checkout@v2
125
125
- name : Login to GitHub Container Registry
126
126
uses : docker/login-action@v1
127
127
with :
@@ -141,8 +141,8 @@ jobs:
141
141
if [ "$imageTag" = "main" ] ; then
142
142
imageTag="latest"
143
143
fi
144
- echo "tag= $imageTag" >> "$GITHUB_OUTPUT "
145
- echo "repo= ghcr.io/${{ github.repository }}" >> "$GITHUB_OUTPUT "
144
+ echo "::set-output name=tag:: $imageTag"
145
+ echo "::set-output name=repo:: ghcr.io/${{ github.repository }}"
146
146
- name : Push Dev Tag
147
147
run : |
148
148
docker tag repo ${{ steps.tagname.outputs.repo }}:${{ steps.tagname.outputs.tag }}
0 commit comments