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

chore(deps): update all non-major regex dependencies #751

Merged
merged 2 commits into from
May 23, 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 .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: '5'
DEV_TAG: '6'

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.49'
FLY_CLI_VERSION: '0.2.52'

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.17.1'
# renovate: datasource=github-releases depName=superfly/flyctl versioning=semver
FLY_CLI_VERSION: '0.2.49'
FLY_CLI_VERSION: '0.2.52'
# renovate: datasource=github-releases depName=sqlc-dev/sqlc
SQLC_VERSION: '1.26.0'

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: '5'
TAG: '6'
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: '5'
TAG: '6'
UID: ${UID:-1000}
GID: ${GID:-1000}
volumes:
Expand Down
2 changes: 1 addition & 1 deletion images/dev-go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ RUN go install github.com/favadi/protoc-go-inject-tag@v${GO_INJECT_TAG_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.58.0
ENV GOLANGCI_LINT_VERSION=1.58.1
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
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='5'
TAG='6'

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