Skip to content

Commit a728082

Browse files
committed
Go v1.18.
1 parent f1a5351 commit a728082

File tree

3 files changed

+11
-690
lines changed

3 files changed

+11
-690
lines changed

.github/workflows/release.yml

+7-12
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,32 @@ on:
44
pull_request:
55
push:
66
tags:
7-
- '*'
7+
- "*"
88

99
jobs:
1010
goreleaser:
1111
runs-on: ubuntu-latest
1212
steps:
13-
-
14-
name: Checkout
13+
- name: Checkout
1514
uses: actions/checkout@v2
1615
with:
1716
fetch-depth: 0
18-
-
19-
name: Set up Go
17+
- name: Set up Go
2018
uses: actions/setup-go@v2
2119
with:
22-
go-version: 1.17
23-
-
24-
name: Cache Go modules
20+
go-version: 1.18
21+
- name: Cache Go modules
2522
uses: actions/cache@v1
2623
with:
2724
path: ~/go/pkg/mod
2825
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
2926
restore-keys: |
3027
${{ runner.os }}-go-
31-
-
32-
name: Tests
28+
- name: Tests
3329
run: |
3430
go mod tidy
3531
go test -v ./...
36-
-
37-
name: Run GoReleaser
32+
- name: Run GoReleaser
3833
uses: goreleaser/goreleaser-action@v2
3934
with:
4035
version: latest

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/bengarrett/zipcmt
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/bengarrett/retrotxtgo v0.0.37
@@ -14,6 +14,6 @@ require (
1414
github.com/dlclark/regexp2 v1.4.0 // indirect
1515
github.com/mitchellh/go-homedir v1.1.0 // indirect
1616
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
17-
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
17+
golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect
1818
golang.org/x/text v0.3.7 // indirect
1919
)

0 commit comments

Comments
 (0)