Skip to content

Commit

Permalink
Node runtime and package updates (catchpoint#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjosef authored and fwilhe committed Feb 2, 2024
1 parent b9e740f commit 9742ad1
Show file tree
Hide file tree
Showing 17 changed files with 88,357 additions and 25,631 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
- run: npm install
- run: npm run all
- name: Verify no unstage changes
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
update-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.FORESIGHT_GITHUB_TOKEN }}
- name: Configure Git User
run: |
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
- name: Use Node.js 16.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "16.x"
node-version: "20"
registry-url: https://registry.npmjs.org
- run: npm version ${{ github.event.inputs.version_scale }}
- run: |
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
needs: [update-version]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# ref is required
# see:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.tag }}
- name: Configure Git User
Expand Down
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ inputs:
required: false
metric_frequency:
description: "Metric collection frequency in seconds. Must be a number. Defaults to '5'."
default: 5
default: "5"
required: false
proc_trace_min_duration:
description: "Puts minimum limit for process execution duration to be traced. Must be a number. Defaults to '-1' which means process duration filtering is not applied."
default: -1
default: "-1"
required: false
proc_trace_sys_enable:
description: "Enables tracing default system processes ('aws', 'cat', 'sed', ...). Defaults to 'false'."
Expand All @@ -24,7 +24,7 @@ inputs:
required: false
proc_trace_chart_max_count:
description: "Maximum number of processes to be shown in trace chart (applicable if `proc_trace_chart_show` input is `true`). Must be a number. Defaults to '100'."
default: 100
default: "100"
required: false
proc_trace_table_show:
description: "Enables showing traced processes in trace table. Defaults to 'false'."
Expand All @@ -44,7 +44,7 @@ inputs:
required: false

runs:
using: "node16"
using: "node20"
main: dist/main/index.js
post: dist/post/index.js
branding:
Expand Down
Loading

0 comments on commit 9742ad1

Please sign in to comment.