Skip to content

Commit a28ebe6

Browse files
Copilotdevantler
andauthored
Upgrade gh-aw to v0.39.0 and remove obsolete GOPROXY declarations (#2044)
* Initial plan * Upgrade gh-aw to v0.39.0 and remove GOPROXY env vars Co-authored-by: devantler <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: devantler <[email protected]>
1 parent fce9038 commit a28ebe6

File tree

5 files changed

+2
-15
lines changed

5 files changed

+2
-15
lines changed

.github/actions/cache-ksail-binary/action.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ runs:
5151
env:
5252
CACHE_HIT: ${{ steps.ksail-cache.outputs.cache-hit }}
5353
OUTPUT_PATH: ${{ inputs.output-path }}
54-
GOPROXY: https://proxy.golang.org,direct
5554
run: |
5655
set -Eeuo pipefail
5756

.github/actions/daily-perf-improver/build-steps/action.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ runs:
2727
2828
- name: 🏗️ Build KSail Binary
2929
shell: bash
30-
env:
31-
GOPROXY: https://proxy.golang.org,direct
3230
run: |
3331
echo "=== Building KSail Binary ===" | tee -a build-steps.log
3432
build_start=$(date +%s)
@@ -45,8 +43,6 @@ runs:
4543
4644
- name: 🧪 Run Unit Tests
4745
shell: bash
48-
env:
49-
GOPROXY: https://proxy.golang.org,direct
5046
run: |
5147
echo "=== Running Unit Tests ===" | tee -a build-steps.log
5248
test_start=$(date +%s)

.github/actions/daily-test-improver/coverage-steps/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ runs:
2323
# Step 3: Download dependencies
2424
- name: 📦 Download Go modules
2525
shell: bash
26-
env:
27-
GOPROXY: https://proxy.golang.org,direct
2826
run: |
2927
echo "Downloading Go modules..." | tee -a coverage-steps.log
3028
go mod download 2>&1 | tee -a coverage-steps.log
@@ -33,8 +31,6 @@ runs:
3331
# Step 4: Build the KSail binary
3432
- name: 🏗️ Build KSail binary
3533
shell: bash
36-
env:
37-
GOPROXY: https://proxy.golang.org,direct
3834
run: |
3935
echo "Building KSail binary..." | tee -a coverage-steps.log
4036
go build -o ksail . 2>&1 | tee -a coverage-steps.log
@@ -51,8 +47,6 @@ runs:
5147
# Step 6: Run unit tests with coverage
5248
- name: 📊 Run tests and generate coverage
5349
shell: bash
54-
env:
55-
GOPROXY: https://proxy.golang.org,direct
5650
run: |
5751
echo "Running tests with coverage..." | tee -a coverage-steps.log
5852
go test -race -coverprofile=coverage.txt -covermode=atomic ./... 2>&1 | tee -a coverage-steps.log

.github/aw/actions-lock.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@
8080
"version": "v3.12.0",
8181
"sha": "8d2750c68a42422c14e847fe6c8ac0403b4cbd6f"
8282
},
83-
"githubnext/gh-aw/actions/setup@v0.38.0": {
83+
"githubnext/gh-aw/actions/setup@v0.39.0": {
8484
"repo": "githubnext/gh-aw/actions/setup",
85-
"version": "v0.38.0",
85+
"version": "v0.39.0",
8686
"sha": "10f1341b529f9a8b51c463e191b7dd63d4caccfd"
8787
}
8888
}

.github/workflows/ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,6 @@ jobs:
196196
run: go env -w GOTOOLCHAIN=go1.25.0+auto
197197

198198
- name: 📄 Generate coverage
199-
env:
200-
GOPROXY: https://proxy.golang.org,direct
201199
run: |
202200
go test -race -coverprofile=coverage.txt -covermode=atomic ./...
203201

0 commit comments

Comments
 (0)