1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-19 19:25:24 +00:00

Drop support for Go 1.14, update CI software

This commit is contained in:
makeworld 2021-12-01 11:09:36 -05:00
parent 545144c1a3
commit 9a2c2ec1f8
5 changed files with 5 additions and 5 deletions

View File

@ -24,6 +24,6 @@ jobs:
uses: golangci/golangci-lint-action@v2 uses: golangci/golangci-lint-action@v2
with: with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.35 version: v1.43
# Optional: show only new issues if it's a pull request. The default value is `false`. # Optional: show only new issues if it's a pull request. The default value is `false`.
only-new-issues: true only-new-issues: true

View File

@ -16,7 +16,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: 1.16 go-version: 1.17
- name: Run GoReleaser - name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2 uses: goreleaser/goreleaser-action@v2
with: with:

View File

@ -19,7 +19,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
go-version: ['1.14', '1.15', '1.16'] go-version: ['1.15', '1.16', '1.17']
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:

View File

@ -80,7 +80,7 @@ This section is for advanced users who want to install the latest (possibly unst
<summary>Click to expand</summary> <summary>Click to expand</summary>
**Requirements:** **Requirements:**
- Go 1.14 or later - Go 1.15 or later
- GNU Make - GNU Make
Please note the Makefile does not intend to support Windows, and so there may be issues. Please note the Makefile does not intend to support Windows, and so there may be issues.

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/makeworld-the-better-one/amfora module github.com/makeworld-the-better-one/amfora
go 1.14 go 1.15
require ( require (
code.rocketnine.space/tslocum/cview v1.5.6-0.20210525194531-92dca67ac283 code.rocketnine.space/tslocum/cview v1.5.6-0.20210525194531-92dca67ac283