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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.25.7'
go-version: '1.26.1'
cache: false
- name: Maven Install
run: ./mvnw install -B -V -DskipTests -Dair.check.skip-all
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.25.7'
go-version: '1.26.1'
cache: false
- name: Install java
uses: actions/setup-java@v5
Expand Down
2 changes: 1 addition & 1 deletion src/main/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module launcher

go 1.25.7
go 1.26.1

require (
github.com/fatih/color v1.18.0
Expand Down
2 changes: 1 addition & 1 deletion src/main/go/properties/properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func loadConvert(in []byte, off int, len int) (string, error) {
return "", errors.New("malformed \\uxxxx encoding")
}
var value int
for i := 0; i < 4; i++ {
for range 4 {
aChar = in[off]
off++
switch aChar {
Expand Down