Skip to content

Commit

Permalink
feat: Upgrade to node 20 (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
geofflamrock committed Dec 14, 2023
1 parent d748faa commit ebb2d20
Show file tree
Hide file tree
Showing 5 changed files with 11,329 additions and 11,295 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,28 @@ on:
push:
branches:
- release-please--**

name: "Build & Push Dist"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.INTEGRATIONS_FNM_BOT_TOKEN }}

- name: Setup node 20
uses: actions/setup-node@v3
with:
node-version: 20.x

- name: install
run: npm ci

- name: build
run: npm run build

- name: update README
run: |-
MAJOR_VERSION=$(cat package.json \
Expand All @@ -23,6 +33,7 @@ jobs:
| sed 's/[", ]//g' \
| awk -F. '{ print $1 }')
sed -i "s/\(uses: OctopusDeploy\/create-release-action@\).*/\1v${MAJOR_VERSION}/g" README.md
- name: commit
run: |-
git config --global user.name "team-integrations-fnm-bot"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup node 20
uses: actions/setup-node@v3
with:
node-version: 20.x

- name: Install package dependencies
run: npm install

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ outputs:
description: 'The release number assigned to the Release in Octopus Deploy'

runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

0 comments on commit ebb2d20

Please sign in to comment.