Update to GoLang 1.15

This commit is contained in:
Deluan 2020-09-30 21:03:38 -04:00 committed by Deluan Quintão
parent ca283f45ea
commit 943f35f7a5
3 changed files with 6 additions and 6 deletions

View File

@ -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:

View File

@ -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

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/deluan/navidrome
go 1.14
go 1.15
require (
github.com/Masterminds/squirrel v1.4.0