Skip to content

Commit 2027587

Browse files
committed
chore: upgrade dependencies, go 1.25
Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
1 parent 6833ea9 commit 2027587

5 files changed

Lines changed: 461 additions & 497 deletions

File tree

.github/workflows/app.yaml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
# fetching all tags is required for the Makefile to compute the right version
1919
fetch-depth: 0
2020

2121
- name: Set up Go
22-
uses: actions/setup-go@v2
22+
uses: actions/setup-go@v5
2323
with:
24-
go-version: "1.24.2"
24+
go-version: "1.25"
2525

2626
- name: Set up QEMU dependency
27-
uses: docker/setup-qemu-action@v1
27+
uses: docker/setup-qemu-action@v3
2828

2929
- name: Set up Docker Buildx
30-
uses: docker/setup-buildx-action@v1
30+
uses: docker/setup-buildx-action@v3
3131

3232
- name: Share cache with other actions
33-
uses: actions/cache@v2
33+
uses: actions/cache@v4
3434
with:
3535
path: |
3636
~/go/pkg/mod
@@ -48,7 +48,7 @@ jobs:
4848

4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
with:
5353
# fetching all tags is required for the Makefile to compute the right version
5454
fetch-depth: 0
@@ -58,25 +58,25 @@ jobs:
5858
git tag --list |grep "helm/"|xargs git tag --delete
5959
6060
- name: Set up Go
61-
uses: actions/setup-go@v2
61+
uses: actions/setup-go@v5
6262
with:
63-
go-version: "1.24.2"
63+
go-version: "1.25"
6464

6565
- name: Set up QEMU dependency
66-
uses: docker/setup-qemu-action@v1
66+
uses: docker/setup-qemu-action@v3
6767

6868
- name: Set up Docker Buildx
69-
uses: docker/setup-buildx-action@v1
69+
uses: docker/setup-buildx-action@v3
7070

7171
- name: Login to Docker Hub
72-
uses: docker/login-action@v1
72+
uses: docker/login-action@v3
7373
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main'
7474
with:
7575
username: ${{ secrets.DOCKER_HUB_USERNAME }}
7676
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
7777

7878
- name: Share cache with other actions
79-
uses: actions/cache@v2
79+
uses: actions/cache@v4
8080
with:
8181
path: |
8282
~/go/pkg/mod
@@ -117,31 +117,31 @@ jobs:
117117
runs-on: ubuntu-latest
118118
steps:
119119
- name: Checkout
120-
uses: actions/checkout@v3
120+
uses: actions/checkout@v4
121121
with:
122122
# fetching all tags is required for the Makefile to compute the right version
123123
fetch-depth: 0
124124

125125
- name: Set up Go
126-
uses: actions/setup-go@v2
126+
uses: actions/setup-go@v5
127127
with:
128-
go-version: "1.24.2"
128+
go-version: "1.25"
129129

130130
- name: Set up QEMU dependency
131-
uses: docker/setup-qemu-action@v1
131+
uses: docker/setup-qemu-action@v3
132132

133133
- name: Set up Docker Buildx
134-
uses: docker/setup-buildx-action@v1
134+
uses: docker/setup-buildx-action@v3
135135

136136
- name: Login to Docker Hub
137-
uses: docker/login-action@v1
137+
uses: docker/login-action@v3
138138
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main'
139139
with:
140140
username: ${{ secrets.DOCKER_HUB_USERNAME }}
141141
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
142142

143143
- name: Share cache with other actions
144-
uses: actions/cache@v2
144+
uses: actions/cache@v4
145145
with:
146146
path: |
147147
~/go/pkg/mod
@@ -171,7 +171,7 @@ jobs:
171171

172172
steps:
173173
- name: Checkout
174-
uses: actions/checkout@v3
174+
uses: actions/checkout@v4
175175
with:
176176
# fetching all tags is required for the Makefile to compute the right version
177177
fetch-depth: 0
@@ -181,12 +181,12 @@ jobs:
181181
git tag --list |grep "helm/"|xargs git tag --delete
182182
183183
- name: Set up Go
184-
uses: actions/setup-go@v2
184+
uses: actions/setup-go@v5
185185
with:
186-
go-version: "1.24.2"
186+
go-version: "1.25"
187187

188188
- name: Share cache with other actions
189-
uses: actions/cache@v2
189+
uses: actions/cache@v4
190190
with:
191191
path: |
192192
~/go/pkg/mod
@@ -229,30 +229,30 @@ jobs:
229229

230230
steps:
231231
- name: Checkout
232-
uses: actions/checkout@v3
232+
uses: actions/checkout@v4
233233
with:
234234
# fetching all tags is required for the Makefile to compute the right version
235235
fetch-depth: 0
236236

237237
- name: Set up Go
238-
uses: actions/setup-go@v2
238+
uses: actions/setup-go@v5
239239
with:
240-
go-version: "1.24.2"
240+
go-version: "1.25"
241241

242242
- name: Set up QEMU dependency
243-
uses: docker/setup-qemu-action@v1
243+
uses: docker/setup-qemu-action@v3
244244

245245
- name: Set up Docker Buildx
246-
uses: docker/setup-buildx-action@v1
246+
uses: docker/setup-buildx-action@v3
247247

248248
- name: Login to Docker Hub
249-
uses: docker/login-action@v1
249+
uses: docker/login-action@v3
250250
with:
251251
username: ${{ secrets.DOCKER_HUB_USERNAME }}
252252
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
253253

254254
- name: Share cache with other actions
255-
uses: actions/cache@v2
255+
uses: actions/cache@v4
256256
with:
257257
path: |
258258
~/go/pkg/mod

.github/workflows/helm.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
# fetching all tags is required for the Makefile to compute the right version
1919
fetch-depth: 0
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
# fetching all tags is required for the Makefile to compute the right version
3636
fetch-depth: 0

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ pkg/http_errors
1212
pkg/packages/npm
1313
helm/artifact-registry/Chart.yaml
1414
docs/registries
15+
.DS_Store

0 commit comments

Comments
 (0)