Skip to content

Commit

Permalink
feat: Upgrade to node 20 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
geofflamrock authored Dec 14, 2023
1 parent a2b0fe1 commit 34d2d07
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 19 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,18 @@ jobs:
- 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 +31,7 @@ jobs:
| sed 's/[", ]//g' \
| awk -F. '{ print $1 }')
sed -i "s/\(uses: OctopusDeploy\/deploy-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 @@ -50,6 +50,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 @@ -32,5 +32,5 @@ outputs:
description: 'JSON string for an array of objects having a `serverTaskId` and an `environmentName`'

runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
50 changes: 34 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
},
"dependencies": {
"@actions/core": "^1.10.0",
"@octopusdeploy/api-client": "^3.1.0"
"@octopusdeploy/api-client": "^3.2.0"
},
"description": "GitHub Action to Create a Release in Octopus Deploy",
"devDependencies": {
"@octopusdeploy/runtime-inputs": "^0.16.0",
"@types/jest": "^29.4.0",
"@types/json-patch": "^0.0.30",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/node": "^20.10.4",
"@types/tmp": "^0.2.3",
"@typescript-eslint/parser": "^5.49.0",
"@vercel/ncc": "^0.36.1",
Expand Down

0 comments on commit 34d2d07

Please sign in to comment.