File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
outputs :
19
19
strategy : ${{ steps.generate-jobs.outputs.strategy }}
20
20
steps :
21
- - uses : actions/checkout@v1
21
+ - uses : actions/checkout@v3
22
22
- id : generate-jobs
23
23
name : Generate Jobs
24
24
run : |
@@ -41,16 +41,16 @@ jobs:
41
41
)
42
42
')"
43
43
44
+ echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
44
45
jq . <<<"$strategy" # sanity check / debugging aid
45
- echo "::set-output name=strategy::$strategy"
46
46
47
47
test :
48
48
needs : generate-jobs
49
49
strategy : ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
50
50
name : ${{ matrix.name }}
51
51
runs-on : ${{ matrix.os }}
52
52
steps :
53
- - uses : actions/checkout@v1
53
+ - uses : actions/checkout@v3
54
54
- name : Prepare Environment
55
55
run : ${{ matrix.runs.prepare }}
56
56
- name : Pull Dependencies
Original file line number Diff line number Diff line change 13
13
name : Check For Uncomitted Changes
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- name : Apply Templates
18
18
run : ./apply-templates.sh
19
19
- name : Check Git Status
You can’t perform that action at this time.
0 commit comments