Skip to content

Commit 0eef156

Browse files
committed
update go
1 parent 1a22caf commit 0eef156

18 files changed

+21
-21
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: "actions/checkout@v4"
1616
- uses: "actions/setup-go@v5"
1717
with:
18-
go-version: "1.24.4"
18+
go-version: "1.24.5"
1919
- name: "provision go tools"
2020
run: "make go"
2121
- name: "install snyk"

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: "actions/checkout@v4"
1212
- uses: actions/setup-go@v5
1313
with:
14-
go-version: "1.24.4"
14+
go-version: "1.24.5"
1515
- uses: "dtolnay/rust-toolchain@stable"
1616
with:
1717
toolchain: "1.87.0"

.github/workflows/test-crosscompile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: "actions/checkout@v4"
1212
- uses: "actions/setup-go@v5"
1313
with:
14-
go-version: "1.24.4"
14+
go-version: "1.24.5"
1515
- name: "provision go tools"
1616
run: "make -j go"
1717
- run: "mage port"

.github/workflows/test-futureproof-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: "actions/checkout@v4"
1919
- uses: "actions/setup-go@v5"
2020
with:
21-
go-version: "1.24.4"
21+
go-version: "1.24.5"
2222
- run: |
2323
go get -u ./...
2424
sh -c "go mod download && go mod vendor && go mod tidy" || echo 'go mod is silly'

.github/workflows/test-futureproof-os.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
- uses: "actions/checkout@v4"
1919
- uses: "actions/setup-go@v5"
2020
with:
21-
go-version: "1.24.4"
21+
go-version: "1.24.5"
2222
- run: "go test"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ jobs:
1111
- uses: "actions/checkout@v4"
1212
- uses: "actions/setup-go@v5"
1313
with:
14-
go-version: "1.24.4"
14+
go-version: "1.24.5"
1515
- run: "go test"

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
golang 1.24.4
1+
golang 1.24.5
22
rust 1.87.0

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BUILDTIME REQUIREMENTS
22

3-
* [Go](https://go.dev/) 1.24.4+
3+
* [Go](https://go.dev/) 1.24.5+
44
* [POSIX](https://pubs.opengroup.org/onlinepubs/9799919799/) compatible [make](https://en.wikipedia.org/wiki/Make_(software))
55
* [Rust](https://www.rust-lang.org/) 1.87.0+
66
* [Snyk](https://snyk.io/)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ $ go install github.com/mcandre/factorio/cmd/factorio@latest
4343

4444
# RUNTIME REQUIREMENTS
4545

46-
* [Go](https://go.dev/) 1.24.4+
46+
* [Go](https://go.dev/) 1.24.5+
4747

4848
## Recommended
4949

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/mcandre/factorio
22

3-
go 1.24.4
3+
go 1.24.5
44

55
require (
66
github.com/magefile/mage v1.15.0
7-
github.com/mcandre/mage-extras v0.0.25
7+
github.com/mcandre/mage-extras v0.0.26
88
)
99

1010
require (

0 commit comments

Comments
 (0)