From 2c2c2760e69aaab81294139a2cb500ceadaf0ebb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:21:09 +0000 Subject: [PATCH] build(deps): 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] --- .github/workflows/build-with-firmware.yml | 4 ++-- .github/workflows/changelog.yml | 2 +- .github/workflows/codeql.yml | 4 ++-- .github/workflows/version-check.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-with-firmware.yml b/.github/workflows/build-with-firmware.yml index dcef2ec..b50f1c3 100644 --- a/.github/workflows/build-with-firmware.yml +++ b/.github/workflows/build-with-firmware.yml @@ -51,7 +51,7 @@ jobs: src-included: 0 steps: - name: Copy Firmware Files - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ matrix.url }} clean: true @@ -60,7 +60,7 @@ jobs: - name: Copy Repo Files if: ${{ matrix.src-included == 0 }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ vars.REPO_SELF }} clean: true diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 08a7811..1e3895e 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -20,7 +20,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index fe05f9d..f69da1f 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -55,7 +55,7 @@ jobs: steps: - name: Checkout Firmware Files - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "${{ vars.REPO_UNLEASHED }}" clean: "true" @@ -64,7 +64,7 @@ jobs: fetch-depth: "0" - name: Checkout Repo Files - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "${{ vars.REPO_SELF }}" clean: "true" diff --git a/.github/workflows/version-check.yml b/.github/workflows/version-check.yml index bc70cf2..1d24bac 100644 --- a/.github/workflows/version-check.yml +++ b/.github/workflows/version-check.yml @@ -29,7 +29,7 @@ jobs: RELEASE_TYPE: 0 steps: - name: Copy Repo Files - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "${{ env.REPO_SELF }}" clean: "true"