Skip to content

Commit 09a8fe1

Browse files
committed
Upgrade to go 1.25
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
1 parent 53c9be1 commit 09a8fe1

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/main.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "default"
1+
name: "main"
22

33
on:
44
push:
@@ -11,23 +11,23 @@ permissions:
1111
pull-requests: "read"
1212

1313
jobs:
14-
main:
14+
test:
1515
name: "test"
1616
runs-on: "ubuntu-latest"
1717

1818
steps:
1919
- uses: "actions/checkout@v4"
2020
- uses: "actions/setup-go@v5"
2121
with:
22-
go-version: "1.24"
22+
go-version: "1.25"
2323
- uses: "actions/cache@v4"
2424
with:
2525
path: |
2626
~/.cache/go-build
2727
~/go/pkg/mod
28-
key: ${{ runner.os }}-go-1.24-${{ hashFiles('**/go.sum') }}
28+
key: ${{ runner.os }}-go-1.25-${{ hashFiles('**/go.sum') }}
2929
restore-keys: |
30-
${{ runner.os }}-go-1.24-
30+
${{ runner.os }}-go-1.25-
3131
- run: |
3232
go mod download
3333
- run: |

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module go.gearno.de/privatebin/v2
22

3-
go 1.23.0
4-
5-
toolchain go1.24.5
3+
go 1.25
64

75
require (
86
github.com/spf13/cobra v1.9.1

0 commit comments

Comments
 (0)