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

PB-7300: upgrading packages to fix critical cve #385

Merged
merged 1 commit into from
Jul 4, 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 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:
global:
- GO111MODULE=on
go:
- 1.21.6
- 1.21.11
script:
- |
if [ -n "${TRAVIS_TAG}" ]; then
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.unittest
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ RUN yum -y install gzip git tar wget curl bash vim make gpg bzip2

RUN git config --global --add safe.directory /go/src/github.com/portworx/kdmp

RUN curl https://dl.google.com/go/go1.21.6.linux-amd64.tar.gz -o go1.21.6.linux-amd64.tar.gz
RUN tar -xf go1.21.6.linux-amd64.tar.gz && mv go /usr/local/
RUN curl https://dl.google.com/go/go1.21.11.linux-amd64.tar.gz -o go1.21.11.linux-amd64.tar.gz
RUN tar -xf go1.21.11.linux-amd64.tar.gz && mv go /usr/local/
ENV GOROOT /usr/local/go
ENV PATH ${GOPATH}/bin:${GOROOT}/bin:${PATH}

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ BASE_DIR := $(shell git rev-parse --show-toplevel)
GIT_SHA := $(shell git rev-parse --short HEAD)
BIN := $(BASE_DIR)/bin

DOCK_BUILD_CNT := golang:1.21.6
DOCK_BUILD_CNT := golang:1.21.11

DOCKER_IMAGE_REPO?=portworx
DOCKER_IMAGE_NAME?=kdmp
Expand Down
Loading