Skip to content

Commit

Permalink
Update gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
raub committed May 9, 2023
1 parent ee33496 commit bc68df1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.17.0
node-version: 18.16.0
cache: 'npm'

- name: Get Npm Version
Expand All @@ -41,11 +41,11 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: GitHub Release
uses: actions/create-release@v1
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.package-version.outputs.current-version }}
release_name: ${{ github.event.inputs.name }}
body: ${{ github.event.inputs.text }}
tag_name: ${{ steps.package-version.outputs.version }}
name: Release ${{ steps.package-version.outputs.version }}
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.17.0
node-version: 18.16.0
cache: 'npm'

- name: Install Modules
Expand All @@ -36,6 +36,6 @@ jobs:
run: npm run eslint

- name: Run Unit Tests
uses: GabrielBB/xvfb-action@v1
uses: actions/setup-node@v3
with:
run: npm run test-ci

0 comments on commit bc68df1

Please sign in to comment.