From 64d887a7444df1301a9adf217e1764bb5e58b2f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 08:49:35 +0000 Subject: [PATCH] ci: bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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 9dcd93e..ab5f082 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@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 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@v4 + - uses: actions/checkout@v5 - uses: actions/download-artifact@v4