Skip to content

Commit

Permalink
feat: Upgrade to node 20 (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
geofflamrock authored Dec 14, 2023
1 parent 93baca8 commit a6cf689
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 20 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,17 @@ 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 +30,7 @@ jobs:
| sed 's/[", ]//g' \
| awk -F. '{ print $1 }')
sed -i "s/\(uses: OctopusDeploy\/push-package-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 @@ -51,6 +51,11 @@ jobs:
with:
version: '*'

- 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 @@ -20,5 +20,5 @@ inputs:
description: 'The name or ID of a space within which this command will be executed. If omitted, the default space will be used.'

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.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"dependencies": {
"@actions/core": "^1.10.0",
"@octopusdeploy/api-client": "^3.1.0",
"@octopusdeploy/api-client": "^3.2.0",
"glob": "^8.1.0"
},
"description": "GitHub Action to Push a Package to Octopus Deploy",
Expand All @@ -14,7 +14,7 @@
"@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 Expand Up @@ -87,4 +87,4 @@
"test:integration": "jest --ci --reporters=default --reporters=jest-junit --testPathPattern=__tests__/integration"
},
"version": "3.1.0"
}
}

0 comments on commit a6cf689

Please sign in to comment.