File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,17 @@ concurrency:
1616jobs :
1717
1818 test :
19- runs-on : ubuntu-latest
19+ runs-on : distroless-ci-large- ubuntu-22.04
2020 steps :
21- - uses : actions/setup-go@v2
21+ - uses : actions/setup-go@v5
2222 with :
23- go-version : ^1.17
23+ go-version : ^1.23
2424
25- - uses : actions/checkout@v2
25+ - uses : actions/checkout@v4
2626 with :
2727 fetch-depth : 0
2828
29- - uses : actions/cache@v2
29+ - uses : actions/cache@v4
3030 with :
3131 path : ~/go/pkg/mod
3232 key : ${{ runner.os }}-gopkgmod-${{ hashFiles('**/go.sum') }}
Original file line number Diff line number Diff line change 1- ARG GOVERSION=1.17
1+ ARG GOVERSION=1.23
22FROM --platform=$BUILDPLATFORM golang:${GOVERSION} as build
33ARG BUILDPLATFORM
44ARG TARGETOS
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ COPY pydevd_2_9_5.patch ./pydevd.patch
8383RUN patch --binary -p0 -d /dbgpy/pydevd/python3.11/lib/python3.11/site-packages < pydevd.patch
8484RUN PYTHONUSERBASE=/dbgpy/pydevd-pycharm/python3.11 pip install --user pydevd-pycharm --no-warn-script-location
8585
86- FROM --platform=$BUILDPLATFORM golang:1.17 as build
86+ FROM --platform=$BUILDPLATFORM golang:1.23 as build
8787ARG BUILDPLATFORM
8888ARG TARGETOS
8989ARG TARGETARCH
Original file line number Diff line number Diff line change 1515# This Dockerfile creates a test image for verifying that pydevd is
1616# running somewhere.
1717
18- FROM golang:1.17 as build
18+ FROM golang:1.23 as build
1919COPY . .
2020RUN CGO_ENABLED=0 go build -o pydevconnect -ldflags '-s -w -extldflags "-static"' pydevconnect.go
2121
You can’t perform that action at this time.
0 commit comments