diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8fe55f0..835bdc5 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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} diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 5edbf89..006a5d4 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -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 @@ -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 != '' diff --git a/.github/workflows/re-release.yml b/.github/workflows/re-release.yml index 4ee24ca..96d8cdd 100644 --- a/.github/workflows/re-release.yml +++ b/.github/workflows/re-release.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ff2ba75..d566d93 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 87f1746..3a3a88a 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index c5bc5d8..1860938 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.6-alpine AS builder +FROM golang:1.25.0-alpine AS builder WORKDIR /app COPY . . diff --git a/go.mod b/go.mod index fb1d2fd..67c6155 100644 --- a/go.mod +++ b/go.mod @@ -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