aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2025-08-12 13:44:24 -0700
committerGitHub <noreply@github.com>2025-08-12 13:44:24 -0700
commit45ff1914044de7dbd4cd85053dc09f47312a2f4d (patch)
treea1e5fac9147a96b501e91953bb4107f4851e10a9 /.github/workflows
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-45ff1914044de7dbd4cd85053dc09f47312a2f4d.tar
nvim-lspconfig-45ff1914044de7dbd4cd85053dc09f47312a2f4d.tar.gz
nvim-lspconfig-45ff1914044de7dbd4cd85053dc09f47312a2f4d.tar.bz2
nvim-lspconfig-45ff1914044de7dbd4cd85053dc09f47312a2f4d.tar.lz
nvim-lspconfig-45ff1914044de7dbd4cd85053dc09f47312a2f4d.tar.xz
nvim-lspconfig-45ff1914044de7dbd4cd85053dc09f47312a2f4d.tar.zst
nvim-lspconfig-45ff1914044de7dbd4cd85053dc09f47312a2f4d.zip
ci: bump actions/checkout from 4 to 5 (#3994)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/docgen.yml2
-rw-r--r--.github/workflows/lint.yml12
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--.github/workflows/test.yml2
4 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml
index be5c02c4..cfab6287 100644
--- a/.github/workflows/docgen.yml
+++ b/.github/workflows/docgen.yml
@@ -11,7 +11,7 @@ jobs:
permissions:
contents: write
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 208b0d48..f80ce4cc 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -12,7 +12,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
@@ -24,7 +24,7 @@ jobs:
luacheck:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: lunarmodules/luacheck@v1
with:
args: lua/* test/*
@@ -32,7 +32,7 @@ jobs:
selene:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: NTBBloodbath/selene-action@v1.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
@@ -41,7 +41,7 @@ jobs:
stylua:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
@@ -51,14 +51,14 @@ jobs:
codespell:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- run: pip install codespell
- run: codespell --quiet-level=2 --check-hidden --skip=./doc/configs.md,./doc/configs.txt --ignore-words=.codespellignorewords
commit:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 79de3da7..69cc5b3c 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -7,7 +7,7 @@ jobs:
luarocks-upload:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v7
env:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 35f71080..28b9457c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -17,7 +17,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
nvim_version: [nightly, 'v0.10.4']
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: rhysd/action-setup-vim@v1
with:
neovim: true