Skip to content

Commit

Permalink
Merge pull request #3 from finale-lua/fix-actions
Browse files Browse the repository at this point in the history
Fix actions
  • Loading branch information
asherber authored Dec 2, 2023
2 parents b21dfa1 + c5dfc79 commit 98e920e
Show file tree
Hide file tree
Showing 3 changed files with 1,022 additions and 1,003 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18]
node: [16, 18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.5
- uses: actions/checkout@v3.6.0
- uses: actions/setup-node@v3.8.2
with:
node-version: ${{ matrix.node }}
- run: npx pnpm i
Expand All @@ -21,13 +21,13 @@ jobs:
runs-on: ubuntu-latest
needs: test-push
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.6.0
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@v2.1.5
- uses: actions/setup-node@v3.8.2
with:
node-version: 14
node-version: 16
- run: npx pnpm i
- run: npm run build
- name: Commit & Push changes
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ inputs:
required: true
default: './docs'
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
Loading

0 comments on commit 98e920e

Please sign in to comment.