Skip to content

Commit 1f52f4b

Browse files
authored
Bump Go to 1.25.0 (#79)
1 parent 61c96cf commit 1f52f4b

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.24.6
1+
ARG GO_VERSION=1.25.0
22
ARG ALPINE_VERSION=3.22
33

44
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION}

.github/workflows/master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19-
- name: Set up Go 1.24.6
19+
- name: Set up Go 1.25.0
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.24.6'
22+
go-version: '1.25.0'
2323

2424
- name: Start MongoDB
2525
uses: supercharge/[email protected]
@@ -43,7 +43,7 @@ jobs:
4343
GIT_BRANCH: ${{ secrets.GIT_BRANCH }}
4444

4545
- name: SonarCloud Scan
46-
uses: sonarsource/sonarqube-scan-action@v5.2.0
46+
uses: sonarsource/sonarqube-scan-action@v5.3.0
4747
env:
4848
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4949
if: env.SONAR_TOKEN != ''

.github/workflows/re-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
fetch-depth: 0
2121
ref: ${{ github.event.inputs.tag }}
2222

23-
- name: Set up Go 1.24.6
23+
- name: Set up Go 1.25.0
2424
uses: actions/setup-go@v5
2525
with:
26-
go-version: '1.24.6'
26+
go-version: '1.25.0'
2727

2828
- name: Start MongoDB
2929
uses: supercharge/[email protected]

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,16 @@ jobs:
88
build-test:
99
name: Build & Test
1010
runs-on: ubuntu-latest
11-
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
1211

1312
steps:
1413
- uses: actions/checkout@v4
1514
with:
1615
fetch-depth: 0
1716

18-
- name: Set up Go 1.24.6
17+
- name: Set up Go 1.25.0
1918
uses: actions/setup-go@v5
2019
with:
21-
go-version: '1.24.6'
20+
go-version: '1.25.0'
2221

2322
- name: Start MongoDB
2423
uses: supercharge/[email protected]

.github/workflows/sonar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
ref: ${{ steps.pr.outputs.head_sha }}
3434
fetch-depth: 0
3535

36-
- name: Set up Go 1.24.6
36+
- name: Set up Go 1.25.0
3737
uses: actions/setup-go@v5
3838
with:
39-
go-version: '1.24.6'
39+
go-version: '1.25.0'
4040

4141
- name: Start MongoDB
4242
uses: supercharge/[email protected]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.6-alpine AS builder
1+
FROM golang:1.25.0-alpine AS builder
22

33
WORKDIR /app
44
COPY . .

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/switcherapi/switcher-gitops
22

3-
go 1.24.6
3+
go 1.25.0
44

55
require (
66
github.com/go-git/go-billy/v5 v5.6.2

0 commit comments

Comments
 (0)