Skip to content

Commit

Permalink
Merge pull request #16 from binary-butterfly/update-actions
Browse files Browse the repository at this point in the history
Update GitHub actions to their newest versions
  • Loading branch information
DysphoricUnicorn committed May 24, 2023
2 parents 833551a + 2bfc4a3 commit 5d76f33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v1
with:
node-version: 18
- run: npm install
- uses: JS-DevTools/npm-publish@v1
- uses: JS-DevTools/npm-publish@v2
with:
token: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
Expand All @@ -26,7 +26,7 @@ jobs:
- run: npm run coverage

- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5d76f33

Please sign in to comment.