Skip to content

Commit 3f58632

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

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/compatibility.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
name: Lookup Go versions
1515
runs-on: ubuntu-latest
1616
outputs:
17-
matrix: ${{ steps.versions.outputs.matrix }}
17+
go-mod-version: ${{ steps.versions.outputs.go-mod-version }}
18+
latest: ${{ steps.versions.outputs.latest }}
1819
steps:
1920
- name: Checkout
2021
uses: actions/checkout@v4
@@ -25,15 +26,20 @@ jobs:
2526
unstable: true # this includes the future -rc versions
2627

2728
go-compatibility:
28-
needs: go-versions
29+
needs: versions
2930
name: Go ${{ matrix.go-version }}
3031
runs-on: ubuntu-latest
3132
timeout-minutes: 10
3233
strategy:
3334
matrix:
34-
go-version: ["${{ needs.go-versions.outputs.go-mod-version }}", "oldstable", "stable", "${{ needs.go-versions.outputs.latest }}"]
35+
go-version: ["${{ needs.versions.go-mod-version }}", "oldstable", "stable", "${{ needs.versions.latest }}"]
3536

3637
steps:
38+
- name: Dump GitHub matrix
39+
env:
40+
DEBUG: ${{ toJson(needs.go-versions) }}
41+
run: echo "$DEBUG"
42+
3743
- name: Checkout
3844
uses: actions/checkout@v4
3945

0 commit comments

Comments
 (0)