From bb0230877ec86ffe341389272ecb4dd87fc80696 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 15:38:28 +0000 Subject: [PATCH 1/7] chore: bump the all group with 2 updates Bumps the all group with 2 updates: [actions/setup-go](https://github.com/actions/setup-go) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/setup-go` from 4.1.0 to 5.0.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/93397bea11091df50f3d7e59dc26a7711a8bcfbe...0c52d547c9bc32b1aa3301fd7a9cb496313a4491) Updates `actions/setup-python` from 4.8.0 to 5.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/b64ffcaf5b410884ad320a9cfac8866006a109aa...0a5c61591373683505ea898e09a3ea4f39ef2b9c) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/go-fbf-test.yml | 2 +- .github/workflows/go-lint.yaml | 2 +- .github/workflows/go-module-swapper.yml | 4 ++-- .github/workflows/pre-commit.yml | 2 +- .github/workflows/release-cli.yml | 2 +- .github/workflows/test-cli.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go-fbf-test.yml b/.github/workflows/go-fbf-test.yml index fb7663f99c6..7e92dd515d8 100644 --- a/.github/workflows/go-fbf-test.yml +++ b/.github/workflows/go-fbf-test.yml @@ -26,7 +26,7 @@ jobs: operating-system: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 with: go-version-file: infra/utils/fbf/go.mod cache-dependency-path: infra/utils/fbf/go.sum diff --git a/.github/workflows/go-lint.yaml b/.github/workflows/go-lint.yaml index 219c7491fb7..2949e7523e4 100644 --- a/.github/workflows/go-lint.yaml +++ b/.github/workflows/go-lint.yaml @@ -24,7 +24,7 @@ jobs: folder: [cli, infra/blueprint-test] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version-file: ${{ matrix.folder }}/go.mod cache-dependency-path: ${{ matrix.folder }}/go.sum diff --git a/.github/workflows/go-module-swapper.yml b/.github/workflows/go-module-swapper.yml index ab2ed248e54..6d125bea806 100644 --- a/.github/workflows/go-module-swapper.yml +++ b/.github/workflows/go-module-swapper.yml @@ -26,7 +26,7 @@ jobs: operating-system: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 with: go-version-file: infra/module-swapper/go.mod cache-dependency-path: infra/module-swapper/go.sum @@ -39,7 +39,7 @@ jobs: fail-fast: false steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version-file: infra/module-swapper/go.mod cache-dependency-path: infra/module-swapper/go.sum diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index aef234822df..56735fc58fe 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -10,5 +10,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/setup-python@b64ffcaf5b410884ad320a9cfac8866006a109aa # v4.8.0 + - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 - uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # v3.0.0 diff --git a/.github/workflows/release-cli.yml b/.github/workflows/release-cli.yml index 77f9c97dfa3..a1fe3867b3e 100644 --- a/.github/workflows/release-cli.yml +++ b/.github/workflows/release-cli.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 with: go-version-file: cli/go.mod cache-dependency-path: cli/go.sum diff --git a/.github/workflows/test-cli.yml b/.github/workflows/test-cli.yml index f8f721da63e..a32bc92f5a1 100644 --- a/.github/workflows/test-cli.yml +++ b/.github/workflows/test-cli.yml @@ -32,7 +32,7 @@ jobs: operating-system: [ubuntu-latest] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 with: go-version-file: cli/go.mod cache-dependency-path: cli/go.sum From 679b4c789273b1ca7e45f24909c2e42bb18c9e73 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 6 Dec 2023 08:12:39 -0800 Subject: [PATCH 2/7] Update go-fbf-test.yml --- .github/workflows/go-fbf-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go-fbf-test.yml b/.github/workflows/go-fbf-test.yml index 7e92dd515d8..cf73f023baf 100644 --- a/.github/workflows/go-fbf-test.yml +++ b/.github/workflows/go-fbf-test.yml @@ -26,7 +26,7 @@ jobs: operating-system: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version-file: infra/utils/fbf/go.mod cache-dependency-path: infra/utils/fbf/go.sum From 8fd25e2c2d21b8830d5ea780d2136f8c2a47c052 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 6 Dec 2023 08:12:55 -0800 Subject: [PATCH 3/7] Update go-module-swapper.yml --- .github/workflows/go-module-swapper.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go-module-swapper.yml b/.github/workflows/go-module-swapper.yml index 6d125bea806..03a83aaa70e 100644 --- a/.github/workflows/go-module-swapper.yml +++ b/.github/workflows/go-module-swapper.yml @@ -26,7 +26,7 @@ jobs: operating-system: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version-file: infra/module-swapper/go.mod cache-dependency-path: infra/module-swapper/go.sum From cc3219afeb4c62523720b12e5bcf8df65e321858 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 6 Dec 2023 08:13:07 -0800 Subject: [PATCH 4/7] Update go-module-swapper.yml --- .github/workflows/go-module-swapper.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go-module-swapper.yml b/.github/workflows/go-module-swapper.yml index 03a83aaa70e..3c51f9bff2e 100644 --- a/.github/workflows/go-module-swapper.yml +++ b/.github/workflows/go-module-swapper.yml @@ -25,7 +25,7 @@ jobs: matrix: operating-system: [ubuntu-latest, macos-latest] steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version-file: infra/module-swapper/go.mod From 7b62a5913b9b14aae271f22de4255dbd8b496645 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 6 Dec 2023 08:13:18 -0800 Subject: [PATCH 5/7] Update go-fbf-test.yml --- .github/workflows/go-fbf-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go-fbf-test.yml b/.github/workflows/go-fbf-test.yml index cf73f023baf..092b5f18b9a 100644 --- a/.github/workflows/go-fbf-test.yml +++ b/.github/workflows/go-fbf-test.yml @@ -25,7 +25,7 @@ jobs: matrix: operating-system: [ubuntu-latest, macos-latest] steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version-file: infra/utils/fbf/go.mod From b423afed02a2e775b453c76c157163b96bd110b5 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 6 Dec 2023 08:13:48 -0800 Subject: [PATCH 6/7] Update release-cli.yml --- .github/workflows/release-cli.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-cli.yml b/.github/workflows/release-cli.yml index a1fe3867b3e..13ca8564bd7 100644 --- a/.github/workflows/release-cli.yml +++ b/.github/workflows/release-cli.yml @@ -20,8 +20,8 @@ jobs: id-token: 'write' steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version-file: cli/go.mod cache-dependency-path: cli/go.sum From 90f81abf0819c21d336d2fcc4d729434bf551a01 Mon Sep 17 00:00:00 2001 From: Andrew Peabody Date: Wed, 6 Dec 2023 08:14:06 -0800 Subject: [PATCH 7/7] Update test-cli.yml --- .github/workflows/test-cli.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-cli.yml b/.github/workflows/test-cli.yml index a32bc92f5a1..33217dfa5f6 100644 --- a/.github/workflows/test-cli.yml +++ b/.github/workflows/test-cli.yml @@ -31,8 +31,8 @@ jobs: matrix: operating-system: [ubuntu-latest] steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version-file: cli/go.mod cache-dependency-path: cli/go.sum