File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,23 +18,23 @@ jobs:
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 : |
25
25
git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
26
26
strategy="$(~/bashbrew/scripts/github-actions/generate.sh)"
27
27
strategy="$(.github/workflows/munge.sh -c <<<"$strategy")"
28
+ echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
28
29
jq . <<<"$strategy" # sanity check / debugging aid
29
- echo "::set-output name=strategy::$strategy"
30
30
31
31
test :
32
32
needs : generate-jobs
33
33
strategy : ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
34
34
name : ${{ matrix.name }}
35
35
runs-on : ${{ matrix.os }}
36
36
steps :
37
- - uses : actions/checkout@v1
37
+ - uses : actions/checkout@v3
38
38
- name : Prepare Environment
39
39
run : ${{ matrix.runs.prepare }}
40
40
- 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