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,22 +18,22 @@ 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
+ echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
27
28
jq . <<<"$strategy" # sanity check / debugging aid
28
- echo "::set-output name=strategy::$strategy"
29
29
30
30
test :
31
31
needs : generate-jobs
32
32
strategy : ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
33
33
name : ${{ matrix.name }}
34
34
runs-on : ${{ matrix.os }}
35
35
steps :
36
- - uses : actions/checkout@v1
36
+ - uses : actions/checkout@v3
37
37
- name : Prepare Environment
38
38
run : ${{ matrix.runs.prepare }}
39
39
- 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