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

fix: update dependencies and repair checks #1998

Closed
wants to merge 5 commits into from
Closed
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/ci-profiling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cypress-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- uses: actions/setup-go@v2
with:
go-version: '^1.19.0'
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
go-version: '^1.19.0'
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Cache go mod directories
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
go-version: '^1.19.0'
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Cache go mod directories
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
go-version: '^1.19.0'
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Cache go mod directories
uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-lib-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
registry-url: 'https://registry.npmjs.org'

- name: Get yarn cache directory path
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/size-limit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Install Webapp dependencies
run: yarn install --frozen-lockfile
- uses: andresz1/size-limit-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
token: ${{ secrets.BOT_GITHUB_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: '16.18'
node-version: 'lts/gallium'
- name: Install dependencies
run: make install-web-dependencies

Expand Down
3 changes: 2 additions & 1 deletion examples/nodejs/express-pull/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"@pyroscope/nodejs": "^0.2.x",
"express": "^4.17.3",
"morgan": "^1.10.0",
"pprof": "^3.2.0"
"pprof": "^3.2.0",
"protobufjs": "^7.2.4"
}
}
Loading