Skip to content

Commit 34d8292

Browse files
authored
chore: update golang version and pin dependencies (#297)
* test: fix system test failure due to golang1.21 * fix: update eslint rule name * chore: update gts dependency
1 parent c7ff346 commit 34d8292

File tree

5 files changed

+108
-68
lines changed

5 files changed

+108
-68
lines changed

package-lock.json

Lines changed: 101 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@types/tmp": "0.2.6",
5353
"codecov": "^3.0.0",
5454
"deep-copy": "^1.4.2",
55-
"gts": "^5.0.0",
55+
"gts": "^5.3.1",
5656
"js-green-licenses": "^4.0.0",
5757
"linkinator": "^5.0.0",
5858
"mocha": "^10.0.0",

system-test/Dockerfile.linux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM golang:1.21-bullseye as builder
1+
FROM golang:1.22-bullseye as builder
22
RUN apt-get update && apt-get install -y \
33
git \
44
&& rm -rf /var/lib/apt/lists/*
55
WORKDIR /root/
6-
RUN go install github.com/google/pprof@latest
6+
RUN go install github.com/google/pprof@v0.0.0-20240827171923-fa2c70bbbfe5
77

88
FROM debian:11
99

system-test/Dockerfile.node-alpine

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ARG NODE_VERSION
22

3-
FROM golang:1.21-alpine as builder
3+
FROM golang:1.22-alpine as builder
44
RUN apk add --no-cache git
55
WORKDIR /root/
6-
RUN go install github.com/google/pprof@latest
6+
RUN go install github.com/google/pprof@v0.0.0-20240827171923-fa2c70bbbfe5
77

88
FROM node:${NODE_VERSION}-alpine
99

system-test/busybench/src/busybench.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
// eslint-disable-next-line node/no-unsupported-features/node-builtins
17+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
1818
import {promises} from 'fs';
19-
// eslint-disable-next-line node/no-extraneous-import
19+
// eslint-disable-next-line n/no-extraneous-import
2020
import {encode, heap, SourceMapper, time} from 'pprof';
2121

2222
const startTime: number = Date.now();

0 commit comments

Comments
 (0)