From e95b8f8d22365c9352caa00aa2827812a74ebbdc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 13:35:36 +0000 Subject: [PATCH 1/3] Bump actions/checkout from 4 to 5 in /.github/workflows Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pull-request.yaml | 4 ++-- .github/workflows/release.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index dcf4893..2f01c0e 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -14,7 +14,7 @@ jobs: scans: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -28,7 +28,7 @@ jobs: golang: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e71a1bb..02d0b1e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Release uses: codfish/semantic-release-action@v3.5.0 env: From ce0e19049ccc2dfcdcf041e019f6f4157b6ea0c8 Mon Sep 17 00:00:00 2001 From: frag223 Date: Fri, 5 Sep 2025 07:01:49 +1000 Subject: [PATCH 2/3] bump version --- .gitignore | 1 + go.mod | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index cde0123..ad67566 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ dist/ +.idea \ No newline at end of file diff --git a/go.mod b/go.mod index 1d89e5b..a72044e 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/code-gorilla-au/env -go 1.21.5 +go 1.25.0 require github.com/joho/godotenv v1.5.1 From 789c76d8aac58fad5a3fbdd0838a7bac2cdf64a0 Mon Sep 17 00:00:00 2001 From: frag223 Date: Fri, 5 Sep 2025 07:04:09 +1000 Subject: [PATCH 3/3] bump version in pipes --- .github/workflows/pull-request.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 2f01c0e..1125ba7 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -6,9 +6,6 @@ on: types: [opened, synchronize, reopened] -env: - GOLANG_VERSION: 1.21 - jobs: scans: @@ -32,10 +29,10 @@ jobs: with: fetch-depth: 0 - - name: Setup golang ${{ env.GOLANG_VERSION }} + - name: Setup golang uses: actions/setup-go@v5 with: - go-version: ${{ env.GOLANG_VERSION }} + go-version-file: go.mod - name: install tools run: make tools-get