From a5bc38e7df13f1787a9093dd89ac3a0a283c23a0 Mon Sep 17 00:00:00 2001 From: "oleh.motrunych" Date: Thu, 19 Oct 2023 11:44:18 +0200 Subject: [PATCH] updated Gihutb action --- .github/workflows/cicd.yml | 8 ++++---- go.mod | 7 ++----- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index bba0800..6c5c2d9 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: 1.17 + go-version: 1.20 id: go - name: Check out code into the Go module directory @@ -54,13 +54,13 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: 1.17 + go-version: 1.20 id: go - name: Run goreleaser - uses: goreleaser/goreleaser-action@v1 + uses: goreleaser/goreleaser-action@v5 with: - version: v0.131.1 + version: latest args: release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/go.mod b/go.mod index dae4b07..3d258a9 100644 --- a/go.mod +++ b/go.mod @@ -1,10 +1,10 @@ module github.com/scribd/objinsync -go 1.17 +go 1.20 require ( github.com/aws/aws-sdk-go v1.45.28 - github.com/bmatcuk/doublestar v1.3.4 + github.com/bmatcuk/doublestar v4.6.0 github.com/getsentry/sentry-go v0.25.0 github.com/prometheus/client_golang v1.17.0 github.com/spf13/cobra v1.7.0 @@ -15,11 +15,9 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect - github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_model v0.5.0 // indirect github.com/prometheus/common v0.45.0 // indirect @@ -28,6 +26,5 @@ require ( go.uber.org/multierr v1.11.0 // indirect golang.org/x/sys v0.13.0 // indirect golang.org/x/text v0.13.0 // indirect - google.golang.org/protobuf v1.31.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect )