Skip to content

Commit

Permalink
Merge pull request #162846 from timsutton/update-actions-checkout
Browse files Browse the repository at this point in the history
workflows: Update GitHub actions to non-deprecated Node versions
  • Loading branch information
p-linnane committed Feb 16, 2024
2 parents a5e4d9b + 447ac29 commit 21d318d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dispatch-build-bottle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
steps:
- name: Prepare runner matrix
id: runner-matrix
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const macOSRegex = /^\d+(?:\.\d+)?(?:-arm64)?$/;
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ jobs:
test-bot-formulae-args: ${{ steps.check-labels.outputs.test-bot-formulae-args }}
test-bot-dependents-args: ${{ steps.check-labels.outputs.test-bot-dependents-args }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check for CI labels
id: check-labels
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
TESTING_FORMULAE: ${{needs.formulae_detect.outputs.testing_formulae}}
ADDED_FORMULAE: ${{needs.formulae_detect.outputs.added_formulae}}
Expand Down Expand Up @@ -260,11 +260,11 @@ jobs:
test-bot-formulae-args: ${{ steps.check-labels.outputs.test-bot-formulae-args }}
test-bot-dependents-args: ${{ steps.check-labels.outputs.test-bot-dependents-args }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check for CI labels
id: check-labels
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
TESTING_FORMULAE: ${{needs.formulae_detect.outputs.testing_formulae}}
ADDED_FORMULAE: ${{needs.formulae_detect.outputs.added_formulae}}
Expand Down

0 comments on commit 21d318d

Please sign in to comment.