Skip to content

Commit

Permalink
chore: update to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathannorris committed Sep 23, 2024
1 parent be23918 commit bfe9fc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ on:
workflow_dispatch:
inputs:
prerelease:
description: "Prerelease"
description: 'Prerelease'
required: true
default: false
type: boolean
draft:
description: "Draft"
description: 'Draft'
required: true
default: false
type: boolean
Expand All @@ -22,28 +22,27 @@ on:
- patch
default: 'patch'


jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.AUTOMATION_USER_TOKEN }}
fetch-depth: 0

- uses: DevCycleHQ/release-action/prepare-release@main
id: prepare-release
with:
github-token: ${{ secrets.AUTOMATION_USER_TOKEN }}
prerelease: ${{ github.event.inputs.prerelease }}
draft: ${{ github.event.inputs.draft }}
version-increment-type: ${{ github.event.inputs.version-increment-type }}

- name: Yarn Install
run: yarn install

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '20.x'
cache: 'yarn'

- name: Install dependencies
Expand Down

0 comments on commit bfe9fc9

Please sign in to comment.