Skip to content
Merged
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
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: [ main ]

env:
GO_VERSION: 1.20.x

jobs:

#
Expand All @@ -25,9 +28,9 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18.x
go-version: ${{ env.GO_VERSION }}

- uses: containerd/project-checks@v1
- uses: containerd/project-checks@v1.1.0
with:
working-directory: src/github.com/containerd/continuity

Expand All @@ -45,7 +48,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18.x
go-version: ${{ env.GO_VERSION }}

- name: Git line endings
shell: bash
Expand All @@ -60,7 +63,7 @@ jobs:
fetch-depth: 25

- name: Dependencies
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.50.1
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.51.2

- name: Lint
shell: bash
Expand Down Expand Up @@ -99,7 +102,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: ${{ env.GO_VERSION }}

- name: Setup Go binary path
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/containerd/continuity

go 1.17
go 1.19

require (
github.com/Microsoft/go-winio v0.5.2
Expand Down