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

bump to 1.21.5 #1630

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
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 cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/criblio/scope

go 1.21.4
go 1.21.5

replace github.com/olekukonko/tablewriter => github.com/cockroachdb/tablewriter v0.0.5-0.20200105123400-bd15540e8847

Expand Down
5 changes: 3 additions & 2 deletions docker/builder/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ RUN apt-get update && \
apt-get clean

# Install Go
RUN curl -LO https://go.dev/dl/go1.21.4.linux-amd64.tar.gz && \
RUN curl -LO https://go.dev/dl/go1.21.5.linux-amd64.tar.gz && \
rm -rf /usr/bin/go && \
rm -rf /usr/local/go && \
tar -C /usr/local -xzf go1.21.4.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.21.5.linux-amd64.tar.gz
ENV PATH "$PATH:/usr/local/go/bin"

ARG UPX_VERSION=4.0.1
Expand Down
Loading