Skip to content

Commit

Permalink
feat: bump to use node20 runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
minchao committed Feb 6, 2024
1 parent 9d6c077 commit 8f49bd2
Show file tree
Hide file tree
Showing 8 changed files with 30,656 additions and 12,393 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
npm install
- run: |
npm run all
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
version: 'v3.10.0'
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ Set up your GitHub Actions workflow with a specific version of [Gatekeeper gator
Set up the workflow:

```yaml
- uses: minchao/setup-gator@v1
- uses: minchao/setup-gator@v2
```
> default is the latest release.
Set up the workflow with a specific version:
```yaml
- uses: minchao/setup-gator@v1
- uses: minchao/setup-gator@v2
with:
version: 'v3.7.1'
```
To test the all unit test suites:
```yaml
- uses: minchao/setup-gator@v1
- uses: minchao/setup-gator@v2
- run: gator test ./...
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ branding:
color: blue
icon: code
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
Loading

0 comments on commit 8f49bd2

Please sign in to comment.