Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update node from v16 to v20 #99

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-webapp-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Cleanup Webapp
on:
push:
branches:
main
- main
paths:
- 'cleanup-webapp/**'
- '.github/workflows/cleanup-webapp-*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy
on:
push:
branches:
main
- main
paths:
- 'deploy/**'
- '.github/workflows/deploy-*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install-cli-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Install CLI
on:
push:
branches:
main
- main
paths:
- 'install-cli/**'
- '.github/workflows/install-cli-*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lib-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Lib
on:
push:
branches:
main
- main
paths:
- 'lib/**'
- '.github/workflows/lib-*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-files-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Push Files
on:
push:
branches:
main
- main
paths:
- 'push-files/**'
- '.github/workflows/push-files-*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-image-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Push Image
on:
push:
branches:
main
- main
paths:
- 'push-image/**'
- '.github/workflows/push-image-*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-webapp-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Push Webapp
on:
push:
branches:
main
- main
paths:
- 'push-webapp/**'
- '.github/workflows/push-webapp-*'
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v20
2 changes: 1 addition & 1 deletion cleanup-webapp/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ outputs:
description: boolean, only true if no deletion happened because it was not required, a failed deletion would not be considered a skip

runs:
using: node16
using: node20
main: dist/index.js
2 changes: 1 addition & 1 deletion deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ inputs:
default: https://raw.githubusercontent.com/BrandwatchLtd/slipstream-cli-release/master/install.sh

runs:
using: node16
using: node20
main: dist/index.js
2 changes: 1 addition & 1 deletion install-cli/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ inputs:
default: https://github.com/BrandwatchLtd/slipstream-cli-release/releases/download/v0.7.0%2Bslipstream/slipstream-cli-release_0.7.0+slipstream_linux_amd64.tar.gz

runs:
using: node16
using: node20
main: dist/index.js
6 changes: 2 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion push-files/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ outputs:
artifactID:
description: The ID (sha256 hash) of the uploaded files. This can be used to request a deployment.
runs:
using: node16
using: node20
main: dist/index.js
2 changes: 1 addition & 1 deletion push-module/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ outputs:
artifactID:
description: The ID (sha256 hash) of the published bundle.
runs:
using: node16
using: node20
main: dist/index.js
2 changes: 1 addition & 1 deletion push-webapp/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ outputs:
description: boolean, only true if no push happened because it was not required, a failed push would not be considered a skip

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