Skip to content

Commit 0303793

Browse files
authored
Merge branch 'main' into daily-roadmap-progress/cluster-update-command-5472fb7c94207991
2 parents 3247cca + 58d6817 commit 0303793

File tree

22 files changed

+552
-988
lines changed

22 files changed

+552
-988
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/agentics-maintenance.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
#
2-
# ___ _ _
3-
# / _ \ | | (_)
4-
# | |_| | __ _ ___ _ __ | |_ _ ___
2+
# ___ _ _
3+
# / _ \ | | (_)
4+
# | |_| | __ _ ___ _ __ | |_ _ ___
55
# | _ |/ _` |/ _ \ '_ \| __| |/ __|
6-
# | | | | (_| | __/ | | | |_| | (__
6+
# | | | | (_| | __/ | | | |_| | (__
77
# \_| |_/\__, |\___|_| |_|\__|_|\___|
88
# __/ |
9-
# _ _ |___/
9+
# _ _ |___/
1010
# | | | | / _| |
1111
# | | | | ___ _ __ _ __| |_| | _____ ____
1212
# | |/\| |/ _ \ '__| |/ /| _| |/ _ \ \ /\ / / ___|
1313
# \ /\ / (_) | | | | ( | | | | (_) \ V V /\__ \
1414
# \/ \/ \___/|_| |_|\_\|_| |_|\___/ \_/\_/ |___/
1515
#
16-
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.38.5). DO NOT EDIT.
16+
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.39.0). DO NOT EDIT.
1717
#
1818
# To regenerate this workflow, run:
1919
# gh aw compile
2020
# For more information: https://github.com/githubnext/gh-aw/blob/main/.github/aw/github-agentic-workflows.md
2121
#
2222
# Alternative regeneration methods:
2323
# make recompile
24-
#
24+
#
2525
# Or use the gh-aw CLI directly:
2626
# ./gh-aw compile --validate --verbose
27-
#
27+
#
2828
# The workflow is generated when any workflow uses the 'expires' field
2929
# in create-discussions, create-issues, or create-pull-request safe-outputs configuration.
3030
# Schedule frequency is automatically determined by the shortest expiration time.
@@ -33,7 +33,7 @@ name: Agentic Maintenance
3333

3434
on:
3535
schedule:
36-
- cron: "37 0 * * *" # Daily (based on minimum expires: 7 days)
36+
- cron: "37 0 * * *" # Daily (based on minimum expires: 7 days)
3737
workflow_dispatch:
3838

3939
permissions: {}
@@ -47,7 +47,7 @@ jobs:
4747
pull-requests: write
4848
steps:
4949
- name: Setup Scripts
50-
uses: githubnext/gh-aw/actions/setup@v0.38.5
50+
uses: githubnext/gh-aw/actions/setup@v0.39.0
5151
with:
5252
destination: /opt/gh-aw/actions
5353

0 commit comments

Comments
 (0)