From f9d8ab322e27ec79b98ac63bf5e6c1ab8a3246fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 16:34:36 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 4 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] --- .github/workflows/container-autoupdate.yml | 2 +- .github/workflows/daily-rhel-copr.yml | 2 +- .github/workflows/infra-check.yml | 2 +- .github/workflows/kickstart-tests.yml | 4 ++-- .github/workflows/push-tests.yml | 2 +- .github/workflows/tests-contributors.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/container-autoupdate.yml b/.github/workflows/container-autoupdate.yml index 91e9718b85e..5e28a347eae 100644 --- a/.github/workflows/container-autoupdate.yml +++ b/.github/workflows/container-autoupdate.yml @@ -35,7 +35,7 @@ jobs: timeout-minutes: 60 steps: - name: Checkout anaconda repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} diff --git a/.github/workflows/daily-rhel-copr.yml b/.github/workflows/daily-rhel-copr.yml index 6ea2c2dcb10..85b43f31457 100644 --- a/.github/workflows/daily-rhel-copr.yml +++ b/.github/workflows/daily-rhel-copr.yml @@ -17,7 +17,7 @@ jobs: CI_CONTAINER: rhinstaller/anaconda-rhel-copr:rhel-8 steps: - name: Clone anaconda repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: master fetch-depth: 0 diff --git a/.github/workflows/infra-check.yml b/.github/workflows/infra-check.yml index de14f4eb63f..ef4ee1172ea 100644 --- a/.github/workflows/infra-check.yml +++ b/.github/workflows/infra-check.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Clone Anaconda repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: # TODO: Are we able to remove ref, fetch-depth and Rebase task? Seems that the checkout # without ref is doing the rebase for us. diff --git a/.github/workflows/kickstart-tests.yml b/.github/workflows/kickstart-tests.yml index 581b149db81..b552ead80ad 100644 --- a/.github/workflows/kickstart-tests.yml +++ b/.github/workflows/kickstart-tests.yml @@ -115,7 +115,7 @@ jobs: sudo rm -rf * .git - name: Clone repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ needs.pr-info.outputs.sha }} fetch-depth: 0 @@ -128,7 +128,7 @@ jobs: git rebase origin/${{ env.TARGET_BRANCH }} - name: Check out kickstart-tests - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: rhinstaller/kickstart-tests path: kickstart-tests diff --git a/.github/workflows/push-tests.yml b/.github/workflows/push-tests.yml index 1e974c8c482..75b4eb122db 100644 --- a/.github/workflows/push-tests.yml +++ b/.github/workflows/push-tests.yml @@ -15,7 +15,7 @@ jobs: timeout-minutes: 30 steps: - name: Clone repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build anaconda-ci container run: make -f Makefile.am anaconda-ci-build diff --git a/.github/workflows/tests-contributors.yml b/.github/workflows/tests-contributors.yml index 96d32141872..67f4de92ab4 100644 --- a/.github/workflows/tests-contributors.yml +++ b/.github/workflows/tests-contributors.yml @@ -68,7 +68,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Clone repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ needs.pr-info.outputs.sha }} fetch-depth: 0 @@ -127,7 +127,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Clone repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ needs.pr-info.outputs.sha }} fetch-depth: 0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c040e9a105..729b9144073 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -43,7 +43,7 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: # TODO: Are we able to remove ref, fetch-depth and Rebase task? Seems that the checkout # without ref is doing the rebase for us. @@ -117,7 +117,7 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: # TODO: Are we able to remove ref, fetch-depth and Rebase task? Seems that the checkout # without ref is doing the rebase for us.