File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
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
+ - uses : docker-library/bashbrew@HEAD
22
23
- id : generate-jobs
23
24
name : Generate Jobs
24
25
run : |
25
- git clone --depth 1 https:// github.com/docker-library/bashbrew.git -b master ~/bashbrew
26
- strategy="$(~/bashbrew/scripts/github-actions/generate.sh) "
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
You can’t perform that action at this time.
0 commit comments