diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d244f09..f6732c5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -15,7 +15,7 @@ jobs: - name: Setup Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version-file: 'go.mod' + go-version: 1.23.x cache: true - name: Run vet run: make tidy fmt vet diff --git a/.github/workflows/e2e-gitea.yaml b/.github/workflows/e2e-gitea.yaml index b53ed90..37cbf0d 100644 --- a/.github/workflows/e2e-gitea.yaml +++ b/.github/workflows/e2e-gitea.yaml @@ -19,7 +19,7 @@ jobs: - name: Setup Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version-file: 'go.mod' + go-version: 1.23.x cache: true - name: Start Provider instances run: make start-provider-instances-gitea GITEA_VERSION=1.21.1@sha256:63165c64759c98e55f0afdb5fc3be64cbb27180d3474e951fa027228e6955029 diff --git a/.github/workflows/e2e-github.yaml b/.github/workflows/e2e-github.yaml index ad9311c..b820b87 100644 --- a/.github/workflows/e2e-github.yaml +++ b/.github/workflows/e2e-github.yaml @@ -17,7 +17,7 @@ jobs: - name: Setup Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version-file: 'go.mod' + go-version: 1.23.x cache: true - name: Run tests run: | diff --git a/.github/workflows/e2e-gitlab.yaml b/.github/workflows/e2e-gitlab.yaml index d5405b5..b6dd774 100644 --- a/.github/workflows/e2e-gitlab.yaml +++ b/.github/workflows/e2e-gitlab.yaml @@ -19,7 +19,7 @@ jobs: - name: Setup Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version-file: 'go.mod' + go-version: 1.23.x cache: true - name: Start Provider instances run: make start-provider-instances-gitlab diff --git a/.github/workflows/e2e-stash.yaml b/.github/workflows/e2e-stash.yaml index 2de8925..dccfa33 100644 --- a/.github/workflows/e2e-stash.yaml +++ b/.github/workflows/e2e-stash.yaml @@ -17,7 +17,7 @@ jobs: - name: Setup Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version-file: 'go.mod' + go-version: 1.23.x cache: true - name: Run tests run: | diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fea4144..337bc58 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ jobs: - name: Setup Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version-file: 'go.mod' + go-version: 1.23.x cache: true - name: Download release notes utility env: diff --git a/.github/workflows/scan.yaml b/.github/workflows/scan.yaml index 997f58f..84096c7 100644 --- a/.github/workflows/scan.yaml +++ b/.github/workflows/scan.yaml @@ -23,7 +23,7 @@ jobs: - name: Setup Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version-file: 'go.mod' + go-version: 1.23.x cache: true - name: Initialize CodeQL uses: github/codeql-action/init@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3 diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 3b31712..b1dfb2f 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -7,7 +7,7 @@ ## Requirements -- Go >= 1.18 +- Go >= 1.23 - Make ## How to run the test suite locally