Skip to content

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
@@ -18,24 +18,24 @@ jobs:
1818
outputs:
1919
strategy: ${{ steps.generate-jobs.outputs.strategy }}
2020
steps:
21-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v3
2222
- id: generate-jobs
2323
name: Generate Jobs
2424
run: |
2525
git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
2626
strategy="$(~/bashbrew/scripts/github-actions/generate.sh)"
2727
# if we're FROM jessie, include a ulimit so apt-get isn't slow (https://bugs.launchpad.net/bugs/1332440)
2828
strategy="$(jq -c '.matrix.include = [ .matrix.include[] | if .meta.froms[] | test("jessie") then .runs.build |= gsub("docker build"; "docker build --ulimit nofile=1024:1024") else . end ]' <<<"$strategy")"
29+
echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
2930
jq . <<<"$strategy" # sanity check / debugging aid
30-
echo "::set-output name=strategy::$strategy"
3131
3232
test:
3333
needs: generate-jobs
3434
strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
3535
name: ${{ matrix.name }}
3636
runs-on: ${{ matrix.os }}
3737
steps:
38-
- uses: actions/checkout@v1
38+
- uses: actions/checkout@v3
3939
- name: Prepare Environment
4040
run: ${{ matrix.runs.prepare }}
4141
- name: Pull Dependencies

.github/workflows/verify-templating.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Check For Uncomitted Changes
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Apply Templates
1818
run: ./apply-templates.sh
1919
- name: Check Git Status

0 commit comments

Comments
 (0)