From baa77a5238cae6e8957128f1073ea46b972db065 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 09:32:44 +0200 Subject: [PATCH] chore(workflows/dependencies): update actions/checkout action to v4 (#565) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | major | `v3` -> `v4` | --- ### Release Notes
actions/checkout (actions/checkout) ### [`v4`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v400) [Compare Source](https://togithub.com/actions/checkout/compare/v3...v4) - [Support fetching without the --progress option](https://togithub.com/actions/checkout/pull/1067) - [Update to node20](https://togithub.com/actions/checkout/pull/1436)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/teutonet/teutonet-helm-charts). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/actionlint.yaml | 2 +- .github/workflows/create-release-pr.yaml | 2 +- .github/workflows/get-changed-chart.yaml | 2 +- .github/workflows/get-changed-charts.yaml | 2 +- .github/workflows/linter.yaml | 2 +- .github/workflows/pr-comment-diff.yaml | 2 +- .github/workflows/release-chart.yaml | 2 +- .github/workflows/release-update-metadata.yaml | 2 +- .github/workflows/update-artifacthub-images.yaml | 4 ++-- .github/workflows/update-codeowners.yaml | 2 +- .github/workflows/validate-and-label-pullrequest.yaml | 4 ++-- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/actionlint.yaml b/.github/workflows/actionlint.yaml index 4e045779c..2828af712 100644 --- a/.github/workflows/actionlint.yaml +++ b/.github/workflows/actionlint.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest name: lint github workflows steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Add problem matchers run: | # https://github.com/rhysd/actionlint/blob/3a2f2c7/docs/usage.md#problem-matchers diff --git a/.github/workflows/create-release-pr.yaml b/.github/workflows/create-release-pr.yaml index 809960b08..839e739e7 100644 --- a/.github/workflows/create-release-pr.yaml +++ b/.github/workflows/create-release-pr.yaml @@ -23,7 +23,7 @@ jobs: env: CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/get-changed-chart.yaml b/.github/workflows/get-changed-chart.yaml index ba438e28c..ac033e8aa 100644 --- a/.github/workflows/get-changed-chart.yaml +++ b/.github/workflows/get-changed-chart.yaml @@ -20,7 +20,7 @@ jobs: env: CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/get-changed-charts.yaml b/.github/workflows/get-changed-charts.yaml index 4b69079f0..4746e5b4c 100644 --- a/.github/workflows/get-changed-charts.yaml +++ b/.github/workflows/get-changed-charts.yaml @@ -15,7 +15,7 @@ jobs: env: CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml index fd8c484d0..e6d0e4193 100644 --- a/.github/workflows/linter.yaml +++ b/.github/workflows/linter.yaml @@ -22,7 +22,7 @@ jobs: CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} CHART: ${{ matrix.chart }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/pr-comment-diff.yaml b/.github/workflows/pr-comment-diff.yaml index bf98effd8..306a50fcb 100644 --- a/.github/workflows/pr-comment-diff.yaml +++ b/.github/workflows/pr-comment-diff.yaml @@ -20,7 +20,7 @@ jobs: CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} GITHUB_TOKEN: ${{ secrets.ACTIONS_BOT_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: pip install yq - name: Install sponge run: sudo apt-get -yq install moreutils diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index 2bae60014..b8a33992f 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest needs: getChangedChart steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 token: ${{ secrets.ACTIONS_BOT_TOKEN }} diff --git a/.github/workflows/release-update-metadata.yaml b/.github/workflows/release-update-metadata.yaml index fb42f315a..9f622c528 100644 --- a/.github/workflows/release-update-metadata.yaml +++ b/.github/workflows/release-update-metadata.yaml @@ -19,7 +19,7 @@ jobs: CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} CHART: ${{ needs.getChangedChart.outputs.chart }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 token: ${{ secrets.ACTIONS_BOT_TOKEN }} diff --git a/.github/workflows/update-artifacthub-images.yaml b/.github/workflows/update-artifacthub-images.yaml index 423d95051..46c2ce914 100644 --- a/.github/workflows/update-artifacthub-images.yaml +++ b/.github/workflows/update-artifacthub-images.yaml @@ -11,7 +11,7 @@ jobs: outputs: charts: ${{ steps.getCharts.outputs.charts }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get all charts id: getCharts @@ -34,7 +34,7 @@ jobs: matrix: chart: ${{ fromJson(needs.getAllCharts.outputs.charts) }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: token: ${{ secrets.ACTIONS_BOT_TOKEN }} diff --git a/.github/workflows/update-codeowners.yaml b/.github/workflows/update-codeowners.yaml index f722c7e96..879406b56 100644 --- a/.github/workflows/update-codeowners.yaml +++ b/.github/workflows/update-codeowners.yaml @@ -12,7 +12,7 @@ jobs: generateCodeowners: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: generate CODEOWNERS run: ./.github/scripts/sync-codeowners.sh > .github/CODEOWNERS diff --git a/.github/workflows/validate-and-label-pullrequest.yaml b/.github/workflows/validate-and-label-pullrequest.yaml index a255a1b03..15ec2aecf 100644 --- a/.github/workflows/validate-and-label-pullrequest.yaml +++ b/.github/workflows/validate-and-label-pullrequest.yaml @@ -14,7 +14,7 @@ jobs: name: Validate commits runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} @@ -28,7 +28,7 @@ jobs: env: CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }}