Skip to content

Commit 45653b6

Browse files
authored
Merge pull request #147 from infosiftr/ci-updates
Switch to "$GITHUB_OUTPUT"; update actions/checkout to v3
2 parents b8bb85f + c95c599 commit 45653b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/verify-templating.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
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

0 commit comments

Comments
 (0)