From 599d431009eaa11652758f69377b04f7813785c3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Aug 2023 22:57:28 +0000 Subject: [PATCH] chore(deps): update all --- .github/workflows/go.yml | 20 ++++++++++---------- .github/workflows/pr.yml | 2 +- .github/workflows/release.yml | 6 +++--- Dockerfile | 4 ++-- go.mod | 4 ++-- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7c71427..e72f02c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -29,27 +29,27 @@ jobs: docker-build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.7.0 - name: Build the Docker image run: docker build . --file Dockerfile goreleaser: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2.7.0 - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.15.2 - name: Cache Go modules - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.8 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- - name: Run GoReleaser (Dry Run) - uses: goreleaser/goreleaser-action@v2.6.1 + uses: goreleaser/goreleaser-action@v2.9.1 with: version: latest args: release --rm-dist --snapshot --skip-publish @@ -58,7 +58,7 @@ jobs: golangci-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.7.0 - name: golangci-lint uses: golangci/golangci-lint-action@v2.5.2 with: @@ -77,7 +77,7 @@ jobs: #- 1.14.7 - 1.15.2 steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.7.0 - name: Install Go uses: actions/setup-go@v2 with: @@ -96,12 +96,12 @@ jobs: OS: macos-latest GOLANG: ${{ matrix.golang }} steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.7.0 - name: Install Go uses: actions/setup-go@v2 with: go-version: ${{ matrix.golang }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v2.1.8 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} @@ -138,12 +138,12 @@ jobs: OS: ubuntu-latest GOLANG: ${{ matrix.golang }} steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.7.0 - name: Install Go uses: actions/setup-go@v2 with: go-version: ${{ matrix.golang }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v2.1.8 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index edceddc..a81ffb5 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -11,7 +11,7 @@ jobs: name: Release-Notes Preview runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.7.0 - run: | git fetch --prune --unshallow --tags - uses: snyk/release-notes-preview@v1.6.2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b9cf502..6457ba4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2.7.0 - name: Unshallow run: git fetch --prune --unshallow @@ -30,7 +30,7 @@ jobs: - name: Cache Go modules if: steps.semantic.outputs.new-release-published == 'true' - uses: actions/cache@v2.1.6 + uses: actions/cache@v2.1.8 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -39,7 +39,7 @@ jobs: - name: Run GoReleaser if: steps.semantic.outputs.new-release-published == 'true' - uses: goreleaser/goreleaser-action@v2.6.1 + uses: goreleaser/goreleaser-action@v2.9.1 with: version: latest args: release --rm-dist diff --git a/Dockerfile b/Dockerfile index dace5ba..4089fb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG VCS_REF ARG VERSION # build -FROM golang:1.19.5-alpine as builder +FROM golang:1.21.0-alpine as builder RUN apk add --no-cache git gcc musl-dev make ENV GO111MODULE=on WORKDIR /go/src/moul.io/generate-fake-data @@ -14,7 +14,7 @@ COPY . ./ RUN make install # minimalist runtime -FROM alpine:3.16.0 +FROM alpine:3.18.3 LABEL org.label-schema.build-date=$BUILD_DATE \ org.label-schema.name="generate-fake-data" \ org.label-schema.description="" \ diff --git a/go.mod b/go.mod index ef67054..8a763db 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.13 require ( github.com/brianvoe/gofakeit/v5 v5.11.2 - github.com/peterbourgon/ff/v3 v3.0.0 - go.uber.org/goleak v1.1.10 + github.com/peterbourgon/ff/v3 v3.4.0 + go.uber.org/goleak v1.2.1 moul.io/srand v1.6.1 )