File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -18,22 +18,24 @@ jobs:
1818 strategy : ${{ steps.generate-jobs.outputs.strategy }}
1919 steps :
2020 - uses : actions/checkout@v4
21- - uses : docker-library/bashbrew@v0.1.13
21+ - uses : docker-library/bashbrew@HEAD
2222 - id : generate-jobs
2323 name : Generate Jobs
2424 run : |
25- strategy="$(GITHUB_REPOSITORY=postfixadmin "$BASHBREW_SCRIPTS/github-actions/generate.sh")"
26- strategy="$("$BASHBREW_SCRIPTS/github-actions/munge-i386.sh" -c <<<"$strategy")"
27- echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
28- jq . <<<"$strategy" # sanity check / debugging aid
25+ strategy="$("$BASHBREW_SCRIPTS/github-actions/generate.sh")"
26+
27+ EOF="EOF-$RANDOM-$RANDOM-$RANDOM"
28+ echo "strategy<<$EOF" >> "$GITHUB_OUTPUT"
29+ jq <<<"$strategy" . | tee -a "$GITHUB_OUTPUT"
30+ echo "$EOF" >> "$GITHUB_OUTPUT"
2931
3032 test :
3133 needs : generate-jobs
3234 strategy : ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
3335 name : ${{ matrix.name }}
3436 runs-on : ${{ matrix.os }}
3537 steps :
36- - uses : actions/checkout@v3
38+ - uses : actions/checkout@v4
3739 - name : Prepare Environment
3840 run : ${{ matrix.runs.prepare }}
3941 - name : Pull Dependencies
You can’t perform that action at this time.
0 commit comments