diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3988a24fb81..803f3c8090f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ env: CHOCOLATEY_VERSION: 2.4.2 # https://github.com/chocolatey/choco/releases EDITORCONFIG_CHECKER_VERSION: 3.2.0 # https://github.com/editorconfig-checker/editorconfig-checker/releases FIND_TYPOS_VERSION: 0.0.3 # https://github.com/twpayne/find-typos/tags - GO_VERSION: 1.23.6 # https://go.dev/doc/devel/release + GO_VERSION: 1.24.0 # https://go.dev/doc/devel/release GOFUMPT_VERSION: 0.7.0 # https://github.com/mvdan/gofumpt/releases GOLANGCI_LINT_VERSION: 1.64.2 # https://github.com/golangci/golangci-lint/releases GOLINES_VERSION: 0.12.2 # https://github.com/segmentio/golines/releases diff --git a/assets/chezmoi.io/docs/install.md.tmpl b/assets/chezmoi.io/docs/install.md.tmpl index 5938dde2164..71abcbc784d 100644 --- a/assets/chezmoi.io/docs/install.md.tmpl +++ b/assets/chezmoi.io/docs/install.md.tmpl @@ -231,7 +231,7 @@ pre-built binary and shell completions. {{- end }} === "Windows" -{{ range $arch := list "amd64" "arm" "arm64" "i386" }} +{{ range $arch := list "amd64" "arm64" "i386" }} [`{{ $arch }}`](https://github.com/twpayne/chezmoi/releases/download/v{{ $version }}/chezmoi_{{ $version }}_windows_{{ $arch }}.zip) {{- end }} diff --git a/assets/scripts/install-local-bin.sh b/assets/scripts/install-local-bin.sh index a1b2f410cf5..5e4b80d2250 100644 --- a/assets/scripts/install-local-bin.sh +++ b/assets/scripts/install-local-bin.sh @@ -178,7 +178,6 @@ check_goos_goarch() { openbsd/riscv64) return 0 ;; windows/386) return 0 ;; windows/amd64) return 0 ;; - windows/arm) return 0 ;; *) printf '%s: unsupported platform\n' "${1}" 1>&2 return 1 diff --git a/assets/scripts/install.sh b/assets/scripts/install.sh index d7c9f7870c7..511042cc0c3 100644 --- a/assets/scripts/install.sh +++ b/assets/scripts/install.sh @@ -177,7 +177,6 @@ check_goos_goarch() { openbsd/riscv64) return 0 ;; windows/386) return 0 ;; windows/amd64) return 0 ;; - windows/arm) return 0 ;; *) printf '%s: unsupported platform\n' "${1}" 1>&2 return 1 diff --git a/go.mod b/go.mod index 314c040d5c7..433d94f8f19 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/twpayne/chezmoi/v2 -go 1.23.4 +go 1.23.6 require ( filippo.io/age v1.2.1