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 @@ -20,24 +20,24 @@ jobs:
2020 outputs :
2121 strategy : ${{ steps.generate-jobs.outputs.strategy }}
2222 steps :
23- - uses : actions/checkout@v1
23+ - uses : actions/checkout@v3
2424 - id : generate-jobs
2525 name : Generate Jobs
2626 run : |
2727 git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
2828 strategy="$(GENERATE_STACKBREW_LIBRARY='.github/workflows/fake-gsl.sh' ~/bashbrew/scripts/github-actions/generate.sh)"
2929 strategy="$(.github/workflows/munge-build.sh -c <<<"$strategy")"
3030 strategy="$(.github/workflows/munge-debian-unstable.sh -c <<<"$strategy")"
31+ echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
3132 jq . <<<"$strategy" # sanity check / debugging aid
32- echo "::set-output name=strategy::$strategy"
3333
3434 test :
3535 needs : generate-jobs
3636 strategy : ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
3737 name : ${{ matrix.name }}
3838 runs-on : ${{ matrix.os }}
3939 steps :
40- - uses : actions/checkout@v1
40+ - uses : actions/checkout@v3
4141 - name : Prepare Environment
4242 run : ${{ matrix.runs.prepare }}
4343 - name : Pull Dependencies
Original file line number Diff line number Diff line change 1515 name : Check For Uncomitted Changes
1616 runs-on : ubuntu-latest
1717 steps :
18- - uses : actions/checkout@v2
18+ - uses : actions/checkout@v3
1919 - name : Apply Templates
2020 run : ./apply-templates.sh
2121 - name : Check Git Status
You can’t perform that action at this time.
0 commit comments