From 943f35f7a567fa8f3ba61cc31e4845c9851230fc Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 30 Sep 2020 21:03:38 -0400 Subject: [PATCH] Update to GoLang 1.15 --- .github/workflows/pipeline.yml | 8 ++++---- Makefile | 2 +- go.mod | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 15bce1daf..a2bd62636 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -32,10 +32,10 @@ jobs: - name: Install taglib run: sudo apt-get install libtag1-dev - - name: Set up Go 1.14 + - name: Set up Go 1.15 uses: actions/setup-go@v1 with: - go-version: 1.14 + go-version: 1.15 id: go - name: Check out code into the Go module directory @@ -115,7 +115,7 @@ jobs: - name: Run GoReleaser - SNAPSHOT if: startsWith(github.ref, 'refs/tags/') != true - uses: docker://deluan/ci-goreleaser:1.14.9-4 + uses: docker://deluan/ci-goreleaser:1.15.2-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -123,7 +123,7 @@ jobs: - name: Run GoReleaser - RELEASE if: startsWith(github.ref, 'refs/tags/') - uses: docker://deluan/ci-goreleaser:1.14.9-4 + uses: docker://deluan/ci-goreleaser:1.15.2-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/Makefile b/Makefile index 799f9fcf7..6c8a9b162 100644 --- a/Makefile +++ b/Makefile @@ -103,5 +103,5 @@ release: .PHONY: release snapshot: - docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.9-4 goreleaser release --rm-dist --skip-publish --snapshot + docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.15.2-1 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot diff --git a/go.mod b/go.mod index 55e3bf529..771cffd4d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/deluan/navidrome -go 1.14 +go 1.15 require ( github.com/Masterminds/squirrel v1.4.0