Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Mar 11, 2022
1 parent 5d6468a commit b621875
Show file tree
Hide file tree
Showing 9 changed files with 78 additions and 38 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
name: "Build"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-go@v2"
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "^1.17"
- name: "Build"
Expand All @@ -47,8 +47,8 @@ jobs:
name: "Unit"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-go@v2"
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "^1.17"
- name: "Test"
Expand All @@ -58,8 +58,8 @@ jobs:
name: "Integration"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-go@v2"
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "^1.17"
- name: "Full Datastore Integration Tests"
Expand All @@ -69,8 +69,8 @@ jobs:
name: "E2E"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-go@v2"
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "^1.16"
- name: "Cache Binaries"
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
working-directory: "e2e/newenemy"
run: |
go test -v -timeout 30m ./...
- uses: "actions/upload-artifact@v2"
- uses: actions/upload-artifact@v3
if: "always()"
# this upload step is really flaky, don't fail the job if it fails
continue-on-error: true
Expand All @@ -125,21 +125,21 @@ jobs:
name: "Generate Protobufs"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-go@v2"
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "^1.17"
- name: "Install Go Protobuf plugins"
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.27.1
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1
go install github.com/envoyproxy/protoc-gen-validate@v0.6.7
- uses: "bufbuild/buf-setup-action@v0.6.0"
- uses: bufbuild/buf-setup-action@v1.1.0
with:
version: "1.1.0"
- name: "Generate & Diff Protos"
run: "./buf.gen.yaml && git diff --text && bash -c '[ $(git status --porcelain | tee /dev/fd/2 | wc -c) -eq 0 ]'"
- uses: "bufbuild/buf-breaking-action@v0.4.0"
- uses: bufbuild/buf-breaking-action@v1.0.0
if: "github.event_name == 'pull_request'"
env:
BUF_INPUT_HTTPS_USERNAME: "${{ github.actor }}"
Expand All @@ -154,17 +154,17 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v2"
uses: actions/checkout@v3
- uses: "docker/setup-qemu-action@v1"
- uses: "docker/setup-buildx-action@v1"
with:
driver-opts: "image=moby/buildkit:master"
- name: "Build the container image"
uses: "docker/build-push-action@v1"
uses: docker/build-push-action@v2
with:
push: false
tags: "latest"
- uses: "actions/setup-go@v2"
- uses: actions/setup-go@v3
with:
go-version: "^1.17"
- name: "Test with image"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
triage:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/labeler@v3"
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: true
12 changes: 6 additions & 6 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
name: "Lint Go"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/setup-go@v2"
- uses: actions/setup-go@v3
with:
go-version: "^1.17"
- uses: "actions/checkout@v2"
- uses: actions/checkout@v3
- name: "Go Mod Tidy"
run: "go mod tidy && bash -c '[ $(git status --porcelain | tee /dev/fd/2 | wc -c) -eq 0 ]'"
- name: "Formatting (gofumpt)"
Expand All @@ -24,7 +24,7 @@ jobs:
echo "${GOFUMPT_OUTPUT}"
exit 1
fi
- uses: "golangci/golangci-lint-action@v2"
- uses: golangci/golangci-lint-action@v3
with:
version: "v1.43"
skip-go-installation: true
Expand All @@ -37,14 +37,14 @@ jobs:
name: "Lint Everything Else"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: actions/checkout@v3
- uses: "bewuethr/yamllint-action@v1.1.1"
with:
config-file: ".yamllint"
- uses: "instrumenta/kubeval-action@5915e4adba5adccac07cb156b82e54c3fed74921"
with:
files: "k8s"
- uses: "nosborn/github-action-markdown-cli@v2.0.0"
- uses: nosborn/github-action-markdown-cli@v3.0.1
with:
files: "."
config_file: ".markdownlint.yaml"
Expand All @@ -61,7 +61,7 @@ jobs:
matrix:
language: ["go"]
steps:
- uses: "actions/checkout@v2"
- uses: actions/checkout@v3
- uses: "github/codeql-action/init@v1"
with:
languages: "${{ matrix.language }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
goreleaser:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: "docker/login-action@v1"
Expand All @@ -23,7 +23,7 @@ jobs:
registry: "ghcr.io"
username: "${{ github.actor }}"
password: "${{ secrets.GHCR_TOKEN }}"
- uses: "actions/setup-go@v2"
- uses: actions/setup-go@v3
with:
go-version: "^1.17"
- uses: "docker/setup-qemu-action@v1"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ RUN go build ./cmd/spicedb/
FROM alpine:3.15.0

RUN [ ! -e /etc/nsswitch.conf ] && echo 'hosts: files dns' > /etc/nsswitch.conf
COPY --from=ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.6 /ko-app/grpc-health-probe /usr/local/bin/grpc_health_probe
COPY --from=ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.8 /ko-app/grpc-health-probe /usr/local/bin/grpc_health_probe
COPY --from=spicedb-builder /go/src/app/spicedb /usr/local/bin/spicedb
ENTRYPOINT ["spicedb"]
2 changes: 1 addition & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# vim: syntax=dockerfile
FROM gcr.io/distroless/base
COPY --from=ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.6 /ko-app/grpc-health-probe /usr/local/bin/grpc_health_probe
COPY --from=ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.8 /ko-app/grpc-health-probe /usr/local/bin/grpc_health_probe
COPY spicedb /usr/local/bin/spicedb
ENTRYPOINT ["spicedb"]
6 changes: 3 additions & 3 deletions e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ go 1.17
require (
github.com/authzed/authzed-go v0.5.1-0.20220303182356-243e79ca06fa
github.com/authzed/grpcutil v0.0.0-20220104222419-f813f77722e5
github.com/authzed/spicedb v0.0.0
github.com/brianvoe/gofakeit/v6 v6.14.3
github.com/authzed/spicedb v1.5.0
github.com/brianvoe/gofakeit/v6 v6.15.0
github.com/ecordell/optgen v0.0.6
github.com/jackc/pgtype v1.10.0
github.com/jackc/pgx/v4 v4.15.0
github.com/stretchr/testify v1.7.0
golang.org/x/tools v0.1.9
google.golang.org/grpc v1.44.0
google.golang.org/grpc v1.45.0
mvdan.cc/gofumpt v0.3.0
)

Expand Down
16 changes: 8 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/Masterminds/squirrel v1.5.2
github.com/authzed/authzed-go v0.5.1-0.20220303182356-243e79ca06fa
github.com/authzed/grpcutil v0.0.0-20220104222419-f813f77722e5
github.com/aws/aws-sdk-go v1.43.11
github.com/aws/aws-sdk-go v1.43.17
github.com/benbjohnson/clock v1.3.0
github.com/cespare/xxhash v1.1.0
github.com/containerd/continuity v0.2.1 // indirect
Expand All @@ -28,16 +28,16 @@ require (
github.com/grpc-ecosystem/go-grpc-middleware/providers/zerolog/v2 v2.0.0-rc.2.0.20210831071041-dd1540ef8252
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.2.0.20210831071041-dd1540ef8252
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.3
github.com/grpc-ecosystem/grpc-gateway/v2 v2.8.0
github.com/hashicorp/go-memdb v1.3.2
github.com/influxdata/tdigest v0.0.1
github.com/jackc/pgconn v1.11.0
github.com/jackc/pgtype v1.10.0
github.com/jackc/pgx/v4 v4.15.0
github.com/jmoiron/sqlx v1.3.4
github.com/johannesboyne/gofakes3 v0.0.0-20210608054100-92d5d4af5fde
github.com/johannesboyne/gofakes3 v0.0.0-20210819161434-5c8dfcfe5310
github.com/jwangsadinata/go-multimap v0.0.0-20190620162914-c29f3d7f33b6
github.com/jzelinskie/cobrautil v0.0.7
github.com/jzelinskie/cobrautil v0.0.8
github.com/jzelinskie/stringz v0.0.1
github.com/lib/pq v1.10.4
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
Expand All @@ -50,7 +50,7 @@ require (
github.com/sercand/kuberesolver/v3 v3.1.0
github.com/shopspring/decimal v1.3.1
github.com/spf13/afero v1.8.0 // indirect
github.com/spf13/cobra v1.3.0
github.com/spf13/cobra v1.4.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.10.1 // indirect
github.com/stretchr/objx v0.3.0 // indirect
Expand All @@ -65,9 +65,9 @@ require (
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/tools v0.1.9
google.golang.org/api v0.70.0
google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf
google.golang.org/grpc v1.44.0
google.golang.org/api v0.71.0
google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6
google.golang.org/grpc v1.45.0
google.golang.org/protobuf v1.27.1
gopkg.in/ini.v1 v1.66.3 // indirect
gopkg.in/yaml.v2 v2.4.0
Expand Down

0 comments on commit b621875

Please sign in to comment.