From 181b3eb44e2e066e4be5d76cf95850e53fce5e4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 20:33:15 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-go](https://github.com/actions/setup-go). Updates `actions/checkout` from 3 to 4 - [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/v3...v4) Updates `actions/setup-go` from 3 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/fossa.yml | 2 +- .github/workflows/go-postsubmit.yml | 4 ++-- .github/workflows/go-release.yml | 4 ++-- .github/workflows/kind.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml index 48276ca8..1b6a04d9 100644 --- a/.github/workflows/fossa.yml +++ b/.github/workflows/fossa.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run FOSSA Scan uses: fossas/fossa-action@v1 diff --git a/.github/workflows/go-postsubmit.yml b/.github/workflows/go-postsubmit.yml index 3efa80f6..bcbe766f 100644 --- a/.github/workflows/go-postsubmit.yml +++ b/.github/workflows/go-postsubmit.yml @@ -21,12 +21,12 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 path: go/src/open-cluster-management.io/config-policy-controller - name: install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version-file: go/src/open-cluster-management.io/config-policy-controller/go.mod - name: images diff --git a/.github/workflows/go-release.yml b/.github/workflows/go-release.yml index 2a30dc38..0cd71f3b 100644 --- a/.github/workflows/go-release.yml +++ b/.github/workflows/go-release.yml @@ -17,12 +17,12 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 path: go/src/open-cluster-management.io/config-policy-controller - name: install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version-file: go/src/open-cluster-management.io/config-policy-controller/go.mod - name: build images diff --git a/.github/workflows/kind.yml b/.github/workflows/kind.yml index 2ca8f410..9a90db49 100644 --- a/.github/workflows/kind.yml +++ b/.github/workflows/kind.yml @@ -32,13 +32,13 @@ jobs: name: KinD tests steps: - name: Checkout Config Policy Controller - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: config-policy-controller fetch-depth: 0 # Fetch all history for all tags and branches - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 id: go with: go-version-file: config-policy-controller/go.mod