From 516cb71df95130425de4a12b5cb01b345754cd2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 23:14:03 +0200 Subject: [PATCH] Bump actions/checkout from 3 to 4 (#2728) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/dev.yml | 4 ++-- .github/workflows/pr-checks.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index a2e370288..717525a8b 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -25,7 +25,7 @@ jobs: build_container_image: ghcr.io/${{ github.repository_owner }}/haos-builder@${{ steps.build_haos_builder.outputs.digest }} steps: - name: Checkout source - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false @@ -90,7 +90,7 @@ jobs: steps: - name: Checkout source - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true persist-credentials: false diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 33f616182..f5419b99e 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 222732814..423a785a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: version_dev: ${{ steps.version_check.outputs.version_dev }} matrix: ${{ steps.generate_matrix.outputs.result }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Validate version id: version_check run: | @@ -53,7 +53,7 @@ jobs: steps: - name: Checkout source - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true