Skip to content

Commit

Permalink
chore(deps): update all non-major regex dependencies (#736)
Browse files Browse the repository at this point in the history
* chore(deps): update all non-major regex dependencies

* bump dev-tag

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Max Baumann <max@bmn.dev>
  • Loading branch information
renovate[bot] and FoseFx authored Apr 23, 2024
1 parent f11cfb4 commit 6f19e55
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 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.22'
# renovate: datasource=github-releases depName=bufbuild/buf
BUF_CLI_VERSION: '1.30.1'
BUF_CLI_VERSION: '1.31.0'
# 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/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

env:
# renovate: dev-tag
DEV_TAG: '4'
DEV_TAG: '5'

jobs:

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.2.31'
FLY_CLI_VERSION: '0.2.40'

on:
workflow_call:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/migrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ permissions:

env:
# renovate: datasource=github-releases depName=golang-migrate/migrate
MIGRATE_VERSION: '4.17.0'
MIGRATE_VERSION: '4.17.1'
# renovate: datasource=github-releases depName=superfly/flyctl versioning=semver
FLY_CLI_VERSION: '0.2.31'
FLY_CLI_VERSION: '0.2.40'
# renovate: datasource=github-releases depName=sqlc-dev/sqlc
SQLC_VERSION: '1.26.0'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-bufs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:

env:
# renovate: datasource=github-releases depName=bufbuild/buf
BUF_CLI_VERSION: '1.30.1'
BUF_CLI_VERSION: '1.31.0'
NODE_VERSION: '18.x'
# renovate: datasource=dart-version depName=dart
DART_VERSION: '3.3.3'
DART_VERSION: '3.3.4'

jobs:
check-preconditions:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ FROM debian AS deps
# renovate: datasource=github-releases depName=DarthSim/hivemind
ARG HIVEMIND_VERSION=1.1.0
# renovate: datasource=github-releases depName=golang-migrate/migrate
ARG MIGRATE_VERSION=4.17.0
ARG MIGRATE_VERSION=4.17.1
# renovate: datasource=github-releases depName=dapr/dapr
ARG DAPR_VERSION=1.13.2

Expand Down
4 changes: 2 additions & 2 deletions dev/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ services:
context: ../images/dev-go-custom
args:
# renovate: dev-tag
TAG: '4'
TAG: '5'
UID: ${UID:-1000}
GID: ${GID:-1000}
volumes:
Expand Down Expand Up @@ -126,7 +126,7 @@ services:
context: ../images/dev-go-custom
args:
# renovate: dev-tag
TAG: '4'
TAG: '5'
UID: ${UID:-1000}
GID: ${GID:-1000}
volumes:
Expand Down
4 changes: 2 additions & 2 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.30.1
ENV BUF_VERSION=1.31.0
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 Down Expand Up @@ -87,7 +87,7 @@ ENV PATH="$PATH:$HOME/.fly/bin"
# install go-migrate
# https://github.com/golang-migrate/migrate
# renovate: datasource=github-releases depName=golang-migrate/migrate
ENV MIGRATE_VERSION=4.17.0
ENV MIGRATE_VERSION=4.17.1
RUN go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@v${MIGRATE_VERSION} \
&& go clean -modcache

Expand Down
2 changes: 1 addition & 1 deletion images/dev-go/update-dev-tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e

# update this value, when you update the Dockerfile
# renovate: dev-tag
TAG='4'
TAG='5'

# go to repo root
cd $(git rev-parse --show-toplevel)
Expand Down

0 comments on commit 6f19e55

Please sign in to comment.