From ffc65c54798b6fe3557e16aa476bea3a04d3be74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 23:13:40 +0000 Subject: [PATCH] ci: bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f0c7213..1eb27ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,14 +27,14 @@ jobs: LDAI_NO_APPSTREAM: 1 # skip checking (broken) AppStream metadata for issues steps: - if: github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: 'neovim/neovim' ref: ${{ github.event.inputs.tag_name }} fetch-depth: 0 - if: github.event_name == 'schedule' || github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly') - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: 'neovim/neovim' fetch-depth: 0 @@ -111,7 +111,7 @@ jobs: steps: # Must perform checkout first, since it deletes the target directory # before running, and would therefore delete the downloaded artifacts - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/download-artifact@v6