Skip to content

Commit 383f62d

Browse files
authored
Run go mod tidy and fix casing (#377)
* Run `go mod tidy` and fix casing Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me> * Use go 1.24 in workflows Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me> --------- Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>
1 parent 2a16140 commit 383f62d

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
tests-integration-img:
66
strategy:
77
matrix:
8-
go-version: [1.22.x]
8+
go-version: [1.24.x]
99
platform: [ubuntu-latest]
1010
runs-on: ${{ matrix.platform }}
1111
steps:
@@ -28,7 +28,7 @@ jobs:
2828
tests-integration:
2929
strategy:
3030
matrix:
31-
go-version: [1.22.x]
31+
go-version: [1.24.x]
3232
platform: [ubuntu-latest]
3333
runs-on: ${{ matrix.platform }}
3434
steps:
@@ -48,7 +48,7 @@ jobs:
4848
tests-unit:
4949
strategy:
5050
matrix:
51-
go-version: [1.22.x]
51+
go-version: [1.24.x]
5252
platform: [ubuntu-latest]
5353
runs-on: ${{ matrix.platform }}
5454
steps:

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Install Go
1212
uses: actions/setup-go@v2
1313
with:
14-
go-version: 1.22.x
14+
go-version: 1.24.x
1515
- name: Checkout code
1616
uses: actions/checkout@v2
1717
- name: Login to quay
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install Go
3636
uses: actions/setup-go@v2
3737
with:
38-
go-version: 1.22.x
38+
go-version: 1.24.x
3939
- name: Checkout code
4040
uses: actions/checkout@v2
4141
- name: Login to quay
@@ -59,7 +59,7 @@ jobs:
5959
- name: Install Go
6060
uses: actions/setup-go@v2
6161
with:
62-
go-version: 1.22.x
62+
go-version: 1.24.x
6363
- name: Checkout code
6464
uses: actions/checkout@v2
6565
- name: Login to quay

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Go
1515
uses: actions/setup-go@v2
1616
with:
17-
go-version: 1.22.x
17+
go-version: 1.24.x
1818
- name: Checkout code
1919
uses: actions/checkout@v2
2020
- name: setup-docker
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Go
4141
uses: actions/setup-go@v2
4242
with:
43-
go-version: 1.22.x
43+
go-version: 1.24.x
4444
- name: Checkout code
4545
uses: actions/checkout@v2
4646
- name: setup-docker
@@ -66,7 +66,7 @@ jobs:
6666
- name: Install Go
6767
uses: actions/setup-go@v2
6868
with:
69-
go-version: 1.22.x
69+
go-version: 1.24.x
7070
- name: Checkout code
7171
uses: actions/checkout@v2
7272
- name: setup-docker
@@ -101,7 +101,7 @@ jobs:
101101
- name: Install Go
102102
uses: actions/setup-go@v2
103103
with:
104-
go-version: 1.22.x
104+
go-version: 1.24.x
105105
- name: Checkout code
106106
uses: actions/checkout@v2
107107
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:bullseye as builder
1+
FROM golang:bullseye AS builder
22
RUN apt-get update && apt-get install -y upx
33
ADD . /luet
44
RUN cd /luet && make build

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/mudler/luet
22

3-
go 1.21
3+
go 1.23.0
4+
45
toolchain go1.24.2
56

67
require (

0 commit comments

Comments
 (0)