From 18e2271f692a75c35ba229ccb0820e77c600e251 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jul 2024 03:59:55 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 (#802) * Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Add automated changelog yaml from template for bot PR --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Github Build Bot Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> --- .changes/unreleased/Dependencies-20240429-192949.yaml | 6 ++++++ .github/workflows/integration.yml | 4 ++-- .github/workflows/main.yml | 6 +++--- .github/workflows/nightly-release.yml | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) create mode 100644 .changes/unreleased/Dependencies-20240429-192949.yaml diff --git a/.changes/unreleased/Dependencies-20240429-192949.yaml b/.changes/unreleased/Dependencies-20240429-192949.yaml new file mode 100644 index 000000000..861eed359 --- /dev/null +++ b/.changes/unreleased/Dependencies-20240429-192949.yaml @@ -0,0 +1,6 @@ +kind: "Dependencies" +body: "Bump actions/checkout from 3 to 4" +time: 2024-04-29T19:29:49.00000Z +custom: + Author: dependabot[bot] + PR: 802 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 429d627fc..b05fcb00d 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -90,7 +90,7 @@ jobs: steps: - name: Check out the repository if: github.event_name != 'pull_request_target' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -98,7 +98,7 @@ jobs: # this is necessary for the `pull_request_target` event - name: Check out the repository (PR) if: github.event_name == 'pull_request_target' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c49b57385..e21d453fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,7 +43,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -78,7 +78,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -120,7 +120,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false diff --git a/.github/workflows/nightly-release.yml b/.github/workflows/nightly-release.yml index 3c36361d5..e7d1da6ec 100644 --- a/.github/workflows/nightly-release.yml +++ b/.github/workflows/nightly-release.yml @@ -40,7 +40,7 @@ jobs: steps: - name: "Checkout ${{ github.repository }} Branch ${{ env.RELEASE_BRANCH }}" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ env.RELEASE_BRANCH }}