@@ -33,7 +33,7 @@ RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
33
33
# install buf
34
34
# https://buf.build/
35
35
# renovate: datasource=github-releases depName=bufbuild/buf
36
- ENV BUF_VERSION=1.48 .0
36
+ ENV BUF_VERSION=1.50 .0
37
37
RUN wget https://github.com/bufbuild/buf/releases/download/v${BUF_VERSION}/buf-Linux-x86_64 -O /usr/local/bin/buf \
38
38
&& chmod +x /usr/local/bin/buf
39
39
@@ -48,7 +48,7 @@ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | d
48
48
# install zed, CLI for SpiceDB
49
49
# https://github.com/authzed/zed
50
50
# renovate: datasource=github-releases depName=authzed/zed
51
- ENV ZED_VERSION=0.23 .0
51
+ ENV ZED_VERSION=0.26 .0
52
52
RUN wget https://github.com/authzed/zed/releases/download/v${ZED_VERSION}/zed_${ZED_VERSION}_linux_amd64.deb -O zed.deb \
53
53
&& apt install -y ./zed.deb \
54
54
&& rm zed.deb
@@ -74,7 +74,7 @@ ENV HOME="/home/${UNAME}"
74
74
# install air
75
75
# https://github.com/air-verse/air
76
76
# renovate: datasource=github-releases depName=air-verse/air
77
- ENV AIR_VERSION=1.61.5
77
+ ENV AIR_VERSION=1.61.7
78
78
RUN curl -sSfL https://raw.githubusercontent.com/air-verse/air/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v${AIR_VERSION}
79
79
80
80
# install dapr-cli
@@ -98,7 +98,7 @@ ENV PATH="$PATH:$HOME/.fly/bin"
98
98
# install go-migrate
99
99
# https://github.com/golang-migrate/migrate
100
100
# renovate: datasource=github-releases depName=golang-migrate/migrate
101
- ENV MIGRATE_VERSION=4.18.1
101
+ ENV MIGRATE_VERSION=4.18.2
102
102
RUN go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@v${MIGRATE_VERSION} \
103
103
&& go clean -modcache
104
104
@@ -112,7 +112,7 @@ RUN go install github.com/fullstorydev/grpcurl/cmd/grpcurl@v${GRPCURL_VERSION} \
112
112
# install sqlc
113
113
# https://sqlc.dev/
114
114
# renovate: datasource=github-releases depName=sqlc-dev/sqlc
115
- ENV SQLC_VERSION=1.27 .0
115
+ ENV SQLC_VERSION=1.28 .0
116
116
RUN go install github.com/sqlc-dev/sqlc/cmd/sqlc@v${SQLC_VERSION}\
117
117
&& go clean -modcache
118
118
0 commit comments