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
13 changes: 5 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,23 @@ jobs:
matrix:
include:
- runner: ubuntu-24.04 # Intel
go: 1.25.x
go: 1.26.x
build_mode: ""
- runner: ubuntu-24.04 # Intel
go: 1.25.x
go: 1.26.x
build_mode: "strip"
- runner: macos-15-intel # Intel
go: 1.25.x
go: 1.26.x
build_mode: ""
- runner: macos-26 # ARM
# libgomodjail_hook_darwin is sensitive to Go version
go: 1.24.x
build_mode: ""
- runner: macos-26 # ARM
go: 1.25.x
build_mode: ""
- runner: macos-26 # ARM
go: 1.26.0-rc.1
go: 1.26.x
build_mode: ""
- runner: macos-26 # ARM
go: 1.25.x
go: 1.26.x
build_mode: "strip"
runs-on: ${{ matrix.runner }}
timeout-minutes: 10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-go@v6
with:
go-version: 1.24.x
go-version: 1.26.x
- name: "Make artifacts"
run: make artifacts
- name: "SHA256SUMS"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ macOS:
- 1.23
- 1.24 (excluding 1.24.0-1.24.5)
- 1.25
- 1.26 (tested with rc1)
- 1.26
- Not applicable to a Go module that use:
- [`syscall.Syscall`, `syscall.RawSyscall`, etc.](https://pkg.go.dev/syscall)

Expand Down
2 changes: 1 addition & 1 deletion libgomodjail_hook_darwin/libgomodjail_hook_darwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ struct go_runtime_offset {
static struct go_runtime_offset go_runtime_offsets[] = {
/* When updating the list, update README.md too */
{
/* go1.26rc1 */
/* go1.26 */
.version_prefix = "go1.26",
.g_m = 48,
.m_libcallpc = 872,
Expand Down