From bedbf9cfe69e7b3dfffe674afb4ed43a500e9d22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 23:03:35 -0800 Subject: [PATCH] chore: bump actions/checkout from 2 to 4 (#95) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout 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/auto-release.yaml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/nightly.yaml | 2 +- .github/workflows/pr_checks.yaml | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml index 1cf2e83548..df0bd0fc2c 100644 --- a/.github/workflows/auto-release.yaml +++ b/.github/workflows/auto-release.yaml @@ -12,7 +12,7 @@ jobs: name: Create Release steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Get Latest Tag diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36c607b28d..0a09ace197 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: name: Build and Push Docker Container runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up QEMU uses: docker/setup-qemu-action@master with: @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Actions Yaml Lint uses: karancode/yamllint-github-action@v2.0.0 with: diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 6d7f71f132..329fe2539d 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -11,7 +11,7 @@ jobs: name: Build and Push Docker Container runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up QEMU uses: docker/setup-qemu-action@master with: diff --git a/.github/workflows/pr_checks.yaml b/.github/workflows/pr_checks.yaml index bb8c879617..43a8ce6d2e 100644 --- a/.github/workflows/pr_checks.yaml +++ b/.github/workflows/pr_checks.yaml @@ -12,7 +12,7 @@ jobs: name: PR Title runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Dependencies run: | npm install @commitlint/config-conventional @@ -22,7 +22,7 @@ jobs: name: PR Commit Messages runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Configure commit lint @@ -33,7 +33,7 @@ jobs: name: PR Labels runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Apply Herald rules uses: gagoar/use-herald-action@v2.3.0 with: