Skip to content

Commit

Permalink
workflows: update actions to newer-than-node-16
Browse files Browse the repository at this point in the history
- checkout@v4
- github-script@v7
- upload-artifact@v4
  • Loading branch information
timsutton committed Feb 15, 2024
1 parent 6fd4e3f commit 97ce88a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autobump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
options: --user root
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Homebrew
id: set-up-homebrew
Expand Down
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
2 changes: 1 addition & 1 deletion .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
if: always() && github.repository_owner == 'Homebrew'
runs-on: ubuntu-latest
steps:
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: event_payload
path: ${{ github.event_path }}
Expand Down

0 comments on commit 97ce88a

Please sign in to comment.