We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 321eeb5 commit a9f77cfCopy full SHA for a9f77cf
1 file changed
.github/workflows/copilot-setup-steps.yml
@@ -7,9 +7,9 @@ on:
7
pull_request:
8
paths: [.github/workflows/copilot-setup-steps.yml]
9
10
-env:
11
- GO_VERSION: "1.25.6"
12
- NODE_VERSION: 22
+# Note: global env vars are NOT used here — they are not reliable in all
+# GitHub Actions contexts (e.g. Copilot setup steps). Values are inlined
+# directly into each step that needs them.
13
14
jobs:
15
copilot-setup-steps:
@@ -23,12 +23,12 @@ jobs:
23
# Go + Node versions match your helper
24
- uses: actions/setup-go@v6
25
with:
26
- go-version: ${{ env.GO_VERSION }}
+ go-version: "1.25.6"
27
cache-dependency-path: go.sum
28
29
- uses: actions/setup-node@v6
30
31
- node-version: ${{ env.NODE_VERSION }}
+ node-version: 22
32
cache: npm
33
cache-dependency-path: package-lock.json
34
0 commit comments