From 41cb149b47c6d8ecc073e747c1f2eef3b23fb02b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 14:06:52 +0000 Subject: [PATCH] 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) - [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.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b46954..5149158 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: with: metric_frequency: 1 comment_on_pr: false - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: build run: | sudo apt-get update @@ -44,7 +44,7 @@ jobs: needs: build if: github.ref == 'refs/heads/main' && github.event.inputs.component == '' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: tag latest run: | git tag --force latest @@ -64,7 +64,7 @@ jobs: needs: build if: github.ref == 'refs/heads/main' && github.event.inputs.component != '' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/download-artifact@v3