Skip to content

Commit

Permalink
Bump go118 (#19)
Browse files Browse the repository at this point in the history
* bump go118

* fix ci

* fix readme
  • Loading branch information
zabio3 committed Jul 3, 2022
1 parent 781e50c commit 4c11dbe
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1,285 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/go115.yml → .github/workflows/go118.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: go1.15
name: go1.18
on: [push]
jobs:

build:
name: Build in Go1.15
name: Build in Go1.18
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.15
uses: actions/setup-go@v1
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: 1.15
go-version: 1.18
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Test
run: go test -v -cover .
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ godolint
===

[![GitHub release](http://img.shields.io/github/release/zabio3/godolint.svg?style=flat-square)](https://github.com/zabio3/godolint/releases/latest)
[![Actions Status](https://github.com/zabio3/godolint/workflows/go1.15/badge.svg)](https://github.com/zabio3/godolint/actions)
[![Actions Status](https://github.com/zabio3/godolint/workflows/go1.18/badge.svg)](https://github.com/zabio3/godolint/actions)
[![Golang CI](https://golangci.com/badges/github.com/zabio3/godolint.svg)](https://golangci.com/r/github.com/zabio3/godolint)
[![Go Report Card](https://goreportcard.com/badge/github.com/zabio3/godolint)](https://goreportcard.com/report/github.com/zabio3/godolint)
[![GoDoc](https://godoc.org/github.com/zabio3/godolint?status.svg)](https://godoc.org/github.com/zabio3/godolint)
Expand Down
12 changes: 10 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
module github.com/zabio3/godolint

go 1.15
go 1.18

require github.com/moby/buildkit v0.8.2
require github.com/moby/buildkit v0.10.3

require (
github.com/containerd/typeurl v1.0.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
google.golang.org/protobuf v1.27.1 // indirect
)
Loading

0 comments on commit 4c11dbe

Please sign in to comment.