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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
timeout-minutes: 15
strategy:
matrix:
go-version: [1.25.x]
go-version: [1.26.x, 1.27.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7.0.1
with:
persist-credentials: false

- uses: actions/setup-go@v6
- uses: actions/setup-go@v7.0.0
with:
go-version: ${{ matrix.go-version }}
cache: true
Expand All @@ -50,17 +50,17 @@ jobs:
make

- name: golangci-lint
uses: golangci/golangci-lint-action@v9
uses: golangci/golangci-lint-action@v9.3.0
with:
version: v2.7.2
version: v2.13.2
working-directory: test/files
args: --config ../../.golangci.yml

- name: Run tests
run: make CI_TAGS="--tags=noresinit" test

- name: Run govulncheck
uses: golang/govulncheck-action@v1
uses: golang/govulncheck-action@v1.1.0
with:
go-version-input: ${{ matrix.go-version }}
work-dir: test/files
Expand Down
4 changes: 2 additions & 2 deletions test/files/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/keybase/node-avdl-compiler/test/files

go 1.24.0
go 1.26.0

toolchain go1.25.5
toolchain go1.27.1

require (
github.com/keybase/client/go v0.0.0-20251212162511-577ca7a6452f
Expand Down
Loading