Skip to content

Commit

Permalink
fix(gha): use node16
Browse files Browse the repository at this point in the history
Use latest version for actions/checkout
  • Loading branch information
embaya committed May 25, 2023
1 parent bc64664 commit 8b06c4c
Show file tree
Hide file tree
Showing 7 changed files with 95 additions and 95 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout all commits
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: yarn install
Expand All @@ -23,7 +23,7 @@ jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
with:
token: ${{secrets.GITHUB_TOKEN}}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ inputs:
description: 'Github API token'
required: true
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
Loading

0 comments on commit 8b06c4c

Please sign in to comment.