Skip to content

Commit

Permalink
chore(deps): update all non-major regex dependencies (#881)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 5, 2024
1 parent e7ac022 commit 01b9f69
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
# renovate: datasource=docker depName=golang versioning=docker
GO_VERSION: '1.23'
# renovate: datasource=github-releases depName=bufbuild/buf
BUF_CLI_VERSION: '1.45.0'
BUF_CLI_VERSION: '1.47.2'
# renovate: datasource=github-releases depName=favadi/protoc-go-inject-tag
PROTOC_GO_INJECT_TAG_VERSION: '1.4.0'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fly-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: 'Deploy to Fly'

env:
# renovate: datasource=github-releases depName=superfly/flyctl versioning=semver
FLY_CLI_VERSION: '0.3.24'
FLY_CLI_VERSION: '0.3.46'

on:
workflow_call:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/migrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
# renovate: datasource=github-releases depName=golang-migrate/migrate
MIGRATE_VERSION: '4.18.1'
# renovate: datasource=github-releases depName=superfly/flyctl versioning=semver
FLY_CLI_VERSION: '0.3.24'
FLY_CLI_VERSION: '0.3.46'
# renovate: datasource=github-releases depName=sqlc-dev/sqlc
SQLC_VERSION: '1.27.0'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-bufs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
# renovate: datasource=github-releases depName=bufbuild/buf
BUF_CLI_VERSION: '1.45.0'
BUF_CLI_VERSION: '1.47.2'
NODE_VERSION: '18.x'
# renovate: datasource=dart-version depName=dart
DART_VERSION: '3.5.4'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spicedb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: spicedb

env:
# renovate: datasource=github-releases depName=authzed/zed
ZED_VERSION: '0.21.5'
ZED_VERSION: '0.23.0'

on:
pull_request:
Expand Down
8 changes: 4 additions & 4 deletions images/dev-go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
# install buf
# https://buf.build/
# renovate: datasource=github-releases depName=bufbuild/buf
ENV BUF_VERSION=1.45.0
ENV BUF_VERSION=1.47.2
RUN wget https://github.com/bufbuild/buf/releases/download/v${BUF_VERSION}/buf-Linux-x86_64 -O /usr/local/bin/buf \
&& chmod +x /usr/local/bin/buf

Expand All @@ -48,7 +48,7 @@ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | d
# install zed, CLI for SpiceDB
# https://github.com/authzed/zed
# renovate: datasource=github-releases depName=authzed/zed
ENV ZED_VERSION=0.21.5
ENV ZED_VERSION=0.23.0
RUN wget https://github.com/authzed/zed/releases/download/v${ZED_VERSION}/zed_${ZED_VERSION}_linux_amd64.deb -O zed.deb \
&& apt install -y ./zed.deb \
&& rm zed.deb
Expand Down Expand Up @@ -105,7 +105,7 @@ RUN go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate
# install grpcurl
# https://github.com/fullstorydev/grpcurl
# renovate: datasource=github-releases depName=fullstorydev/grpcurl
ENV GRPCURL_VERSION=1.9.1
ENV GRPCURL_VERSION=1.9.2
RUN go install github.com/fullstorydev/grpcurl/cmd/grpcurl@v${GRPCURL_VERSION} \
&& go clean -modcache

Expand Down Expand Up @@ -135,7 +135,7 @@ RUN go install mvdan.cc/gofumpt@v${GOFUMPT_VERSION} \
# install golangci-lint, the linter we also use in the CI
# https://golangci-lint.run/
# renovate: datasource=github-releases depName=golangci/golangci-lint
ENV GOLANGCI_LINT_VERSION=1.61.0
ENV GOLANGCI_LINT_VERSION=1.62.2
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s -- -b $(go env GOPATH)/bin v${GOLANGCI_LINT_VERSION}

Expand Down

0 comments on commit 01b9f69

Please sign in to comment.