Skip to content

Commit

Permalink
Merge pull request #72 from datawire/rlane/update-actions-checkout
Browse files Browse the repository at this point in the history
Update to latest GitHub Actions
  • Loading branch information
rick-a-lane-ii authored Mar 5, 2024
2 parents 82fc418 + dd69e81 commit 3700228
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/expire.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
distribution: [GKE]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Use the provision-cluster action with the noop input to delete any expired clusters.
- uses: ./provision-cluster
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

runs-on: ${{ matrix.client_os }}-${{ matrix.client_arch }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Kubectl tool installer
uses: Azure/setup-kubectl@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
node-version: [14.x, 15.x, 16.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- working-directory: .github/actions/provision-cluster
Expand Down
4 changes: 2 additions & 2 deletions docs/ACTION_RUNNERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
steps:
# The provision-cluster action will automatically register a cleanup hook to remove the
# cluster it provisions when the job is done.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
```
The following limitations apply to Mac M1 runners:
Expand All @@ -51,5 +51,5 @@ jobs:
steps:
# The provision-cluster action will automatically register a cleanup hook to remove the
# cluster it provisions when the job is done.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
```
2 changes: 1 addition & 1 deletion provision-cluster/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:
using: composite
steps:
- name: Checkout action code
uses: actions/checkout@v3
uses: actions/checkout@v4
env:
REPO: ${{ github.action_repository }}
REF: ${{ github.action_ref }}
Expand Down

0 comments on commit 3700228

Please sign in to comment.