From 7ba765dd227f24a0179b8c29f3cf259d4c81500c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 20:55:06 -0600 Subject: [PATCH 1/4] Bump actions/setup-go from 4 to 5 (#1204) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0f4a7c12..783d1e38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,7 +60,7 @@ jobs: Write-Host "Identified Tag: $env:TAG" - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: '${{ env.GO_VERSION }}' From 63e1ea6842943d2b6f3a1ebf3c74e0781bc2a9d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 20:55:39 -0600 Subject: [PATCH 2/4] Bump actions/cache from 3 to 4 (#1203) Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 783d1e38..36f405b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,7 +65,7 @@ jobs: go-version: '${{ env.GO_VERSION }}' - name: Cache Go Modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/go-build @@ -75,7 +75,7 @@ jobs: ${{ runner.os }}-go- - name: Cache QuikGo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/go/bin From 2d3757a9e2cf5400949a5a547cca9e2a20f9b371 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 20:56:17 -0600 Subject: [PATCH 3/4] Bump softprops/action-gh-release from 1 to 2 (#1202) Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v1...v2) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/scanner.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scanner.yml b/.github/workflows/scanner.yml index d71c1e37..5ce9ffa4 100644 --- a/.github/workflows/scanner.yml +++ b/.github/workflows/scanner.yml @@ -74,7 +74,7 @@ jobs: echo "NOTES=$notes" >> $GITHUB_OUTPUT - name: Update release body - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: tag_name: ${{ steps.get_latest_release.outputs.tag }} body: | From 862ef44d44335a0180957f2eaec96c5d388a6a60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 20:57:05 -0600 Subject: [PATCH 4/4] Bump actions/github-script from 6 to 7 (#1201) Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/scanner.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scanner.yml b/.github/workflows/scanner.yml index 5ce9ffa4..fa20e9fa 100644 --- a/.github/workflows/scanner.yml +++ b/.github/workflows/scanner.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Get latest release details id: get_latest_release - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const { data: latestRelease } = await github.rest.repos.getLatestRelease({