Skip to content

Commit

Permalink
Merge pull request #3 from Vendic/fix/PIPE-244-upgrade-to-node-20
Browse files Browse the repository at this point in the history
PIPE-244 - Upgrade actions to latest versions, also use node20
  • Loading branch information
Ryangr0 authored Sep 23, 2024
2 parents 84565e8 + b0d232b commit ac0aad1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'

- run: npm install
- run: npm run test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'

- run: npm install
- run: npm run build
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'clickup-get-tasks'
description: 'Github action to fetch tasks from Clickup via the API'
author: 'Tjitse-E'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
inputs:
clickup_token:
Expand Down

0 comments on commit ac0aad1

Please sign in to comment.