Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/catch_hangs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go (bootstrap)
uses: actions/setup-go@v5
with:
go-version: "1.25.5"
go-version: "1.26.5"

- name: Export GOROOT_BOOTSTRAP
run: echo "GOROOT_BOOTSTRAP=$(go env GOROOT)" >> "$GITHUB_ENV"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/catch_leaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go (bootstrap)
uses: actions/setup-go@v5
with:
go-version: "1.25.5"
go-version: "1.26.5"

- name: Export GOROOT_BOOTSTRAP
run: echo "GOROOT_BOOTSTRAP=$(go env GOROOT)" >> "$GITHUB_ENV"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/catch_races.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go (bootstrap)
uses: actions/setup-go@v5
with:
go-version: "1.25.5"
go-version: "1.26.5"

- name: Export GOROOT_BOOTSTRAP
run: echo "GOROOT_BOOTSTRAP=$(go env GOROOT)" >> "$GITHUB_ENV"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go (bootstrap)
uses: actions/setup-go@v5
with:
go-version: '1.25.5'
go-version: '1.26.5'

- name: Export GOROOT_BOOTSTRAP
run: echo "GOROOT_BOOTSTRAP=$(go env GOROOT)" >> $GITHUB_ENV
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Set up Go (bootstrap)
uses: actions/setup-go@v5
with:
go-version: '1.25.5'
go-version: '1.26.5'

- name: Export GOROOT_BOOTSTRAP
run: echo "GOROOT_BOOTSTRAP=$(go env GOROOT)" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/smoke_use_libafl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go (bootstrap)
uses: actions/setup-go@v5
with:
go-version: "1.25.5"
go-version: "1.26.5"

- name: Export GOROOT_BOOTSTRAP
run: echo "GOROOT_BOOTSTRAP=$(go env GOROOT)" >> "$GITHUB_ENV"
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Set up Go (bootstrap)
uses: actions/setup-go@v5
with:
go-version: "1.25.5"
go-version: "1.26.5"

- name: Export GOROOT_BOOTSTRAP
run: echo "GOROOT_BOOTSTRAP=$(go env GOROOT)" >> "$GITHUB_ENV"
Expand Down
2 changes: 1 addition & 1 deletion misc/gosentry/scripts/quickcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [[ -z "${bootstrap_goroot}" ]]; then
if command -v go >/dev/null 2>&1; then
bootstrap_goroot="$(go env GOROOT)"
else
bootstrap_ver="go1.25.5"
bootstrap_ver="go1.26.5"
os="$(uname -s | tr '[:upper:]' '[:lower:]')"
Comment on lines 8 to 12
arch="$(uname -m)"
case "${arch}" in
Expand Down
2 changes: 1 addition & 1 deletion misc/gosentry/tests/smoke_use_libafl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [[ -z "${bootstrap_goroot}" ]]; then
if command -v go >/dev/null 2>&1; then
bootstrap_goroot="$(go env GOROOT)"
else
bootstrap_ver="go1.25.5"
bootstrap_ver="go1.26.5"
os="$(uname -s | tr '[:upper:]' '[:lower:]')"
Comment on lines 8 to 12
arch="$(uname -m)"
case "${arch}" in
Expand Down
Loading