From 25479dd27f38fd7064ffd4cfc11da0e236a577f0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 10:25:05 -0500 Subject: [PATCH] chore(deps): update actions/checkout action to v4 (#61) 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**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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/infratographer/metadata-api). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/apollo-studio-checks.yml | 2 +- .github/workflows/apollo-studio-publish.yml | 2 +- .github/workflows/image-main-latest.yml | 2 +- .github/workflows/lint-go.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test-go.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/apollo-studio-checks.yml b/.github/workflows/apollo-studio-checks.yml index d9472594..716cc9d8 100644 --- a/.github/workflows/apollo-studio-checks.yml +++ b/.github/workflows/apollo-studio-checks.yml @@ -19,7 +19,7 @@ jobs: APOLLO_VCS_REMOTE_URL: ${{ github.event.pull_request.head.repo.clone_url }} APOLLO_VCS_BRANCH: ${{ github.event.pull_request.head.label }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/apollo-studio-publish.yml b/.github/workflows/apollo-studio-publish.yml index 9656b260..c9c4f2f5 100644 --- a/.github/workflows/apollo-studio-publish.yml +++ b/.github/workflows/apollo-studio-publish.yml @@ -11,7 +11,7 @@ jobs: APOLLO_KEY: ${{ secrets.APOLLO_KEY }} APOLLO_VCS_COMMIT: ${{ github.event.pull_request.head.sha }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Rover run: | diff --git a/.github/workflows/image-main-latest.yml b/.github/workflows/image-main-latest.yml index d7ceab1b..7da53281 100644 --- a/.github/workflows/image-main-latest.yml +++ b/.github/workflows/image-main-latest.yml @@ -14,7 +14,7 @@ jobs: - name: Log in to GHCR run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/lint-go.yml b/.github/workflows/lint-go.yml index 6aea6c9e..4fbf6855 100644 --- a/.github/workflows/lint-go.yml +++ b/.github/workflows/lint-go.yml @@ -10,7 +10,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version-file: 'go.mod' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4cbe2856..752b9784 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: helm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Publish Helm charts uses: stefanprodan/helm-gh-pages@master @@ -30,7 +30,7 @@ jobs: - name: Log in to GHCR run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/test-go.yml b/.github/workflows/test-go.yml index 0bb00b3e..61ddd7f3 100644 --- a/.github/workflows/test-go.yml +++ b/.github/workflows/test-go.yml @@ -41,7 +41,7 @@ jobs: steps: - name: Checkout code for ${{ matrix.ci-database }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go for ${{ matrix.ci-database }} uses: actions/setup-go@v4 with: