Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ on:
- '**.md'
- .gitignore
env:
GO_VERSION: 1.15.5
GO_VERSION: 1.16
jobs:
build:
name: 'Build on ${{ matrix.os }}'
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-18.04" ]
os: [ "ubuntu-20.04" ]
runs-on: ${{ matrix.os }}
steps:
- name: 'Setup Go ${{ env.GO_VERSION }}'
Expand All @@ -35,8 +35,8 @@ jobs:
golangci:
strategy:
matrix:
go-version: [ 1.15.x ]
os: [ "ubuntu-18.04" ]
go-version: [ 1.16.x ]
os: [ "ubuntu-20.04" ]
name: lint
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -45,5 +45,5 @@ jobs:
uses: golangci/golangci-lint-action@v2
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.36.0
version: v1.50.1

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module upgradebot

go 1.15
go 1.16
Loading