Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.24.6
ARG GO_VERSION=1.25.0
ARG ALPINE_VERSION=3.22

FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Go 1.24.6
- name: Set up Go 1.25.0
uses: actions/setup-go@v5
with:
go-version: '1.24.6'
go-version: '1.25.0'

- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.12.0
Expand All @@ -43,7 +43,7 @@ jobs:
GIT_BRANCH: ${{ secrets.GIT_BRANCH }}

- name: SonarCloud Scan
uses: sonarsource/sonarqube-scan-action@v5.2.0
uses: sonarsource/sonarqube-scan-action@v5.3.0
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
if: env.SONAR_TOKEN != ''
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/re-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
fetch-depth: 0
ref: ${{ github.event.inputs.tag }}

- name: Set up Go 1.24.6
- name: Set up Go 1.25.0
uses: actions/setup-go@v5
with:
go-version: '1.24.6'
go-version: '1.25.0'

- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.12.0
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,16 @@ jobs:
build-test:
name: Build & Test
runs-on: ubuntu-latest
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go 1.24.6
- name: Set up Go 1.25.0
uses: actions/setup-go@v5
with:
go-version: '1.24.6'
go-version: '1.25.0'

- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.12.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
ref: ${{ steps.pr.outputs.head_sha }}
fetch-depth: 0

- name: Set up Go 1.24.6
- name: Set up Go 1.25.0
uses: actions/setup-go@v5
with:
go-version: '1.24.6'
go-version: '1.25.0'

- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.12.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.6-alpine AS builder
FROM golang:1.25.0-alpine AS builder

WORKDIR /app
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/switcherapi/switcher-gitops

go 1.24.6
go 1.25.0

require (
github.com/go-git/go-billy/v5 v5.6.2
Expand Down