Skip to content

Commit b8b83f1

Browse files
committed
chore: try to debug
1 parent 4f7700b commit b8b83f1

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/compatibility.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Lookup Go versions
1515
runs-on: ubuntu-latest
1616
outputs:
17-
matrix: ${{ steps.versions.outputs.matrix }}
17+
versions: ${{ steps.versions.outputs }}
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
@@ -31,9 +31,14 @@ jobs:
3131
timeout-minutes: 10
3232
strategy:
3333
matrix:
34-
go-version: ["${{ needs.go-versions.outputs.go-mod-version }}", "oldstable", "stable", "${{ needs.go-versions.outputs.latest }}"]
34+
go-version: ["${{ needs.go-versions.versions.go-mod-version }}", "oldstable", "stable", "${{ needs.go-versions.versions.latest }}"]
3535

3636
steps:
37+
- name: Dump GitHub matrix
38+
env:
39+
DEBUG: ${{ toJson(needs.go-versions) }}
40+
run: echo "$DEBUG"
41+
3742
- name: Checkout
3843
uses: actions/checkout@v4
3944

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
run: go test ./... -v
2727

2828
- name: golangci-lint
29-
uses: golangci/golangci-lint-action@v7
29+
uses: golangci/golangci-lint-action@v8
3030
with:
31-
version: v2.1
31+
version: v2.3
3232
args: --issues-exit-code=1 --timeout 5m
3333
only-new-issues: false
3434

0 commit comments

Comments
 (0)