aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codespell.yml2
-rw-r--r--.github/workflows/comment-config-changes.yml2
-rw-r--r--.github/workflows/commit_lint.yml2
-rw-r--r--.github/workflows/docgen.yml2
-rw-r--r--.github/workflows/lint.yml4
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--.github/workflows/sanitizer.yml2
-rw-r--r--.github/workflows/test.yml2
8 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 961f15b4..c43f7616 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -4,7 +4,7 @@ jobs:
codespell:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Install codespell
run: pip install codespell
- name: Use codespell
diff --git a/.github/workflows/comment-config-changes.yml b/.github/workflows/comment-config-changes.yml
index a6c1150c..2e907e8d 100644
--- a/.github/workflows/comment-config-changes.yml
+++ b/.github/workflows/comment-config-changes.yml
@@ -9,7 +9,7 @@ jobs:
PR_NUMBER: ${{ github.event.pull_request.number }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
diff --git a/.github/workflows/commit_lint.yml b/.github/workflows/commit_lint.yml
index 32d96375..e1df4cae 100644
--- a/.github/workflows/commit_lint.yml
+++ b/.github/workflows/commit_lint.yml
@@ -3,7 +3,7 @@ jobs:
lint-commits:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- run: npm install --save-dev @commitlint/{cli,config-conventional}
diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml
index 8c4a9ed3..678b00d4 100644
--- a/.github/workflows/docgen.yml
+++ b/.github/workflows/docgen.yml
@@ -11,7 +11,7 @@ jobs:
permissions:
contents: write
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index f7f72283..e2cf7294 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Run luacheck
uses: lunarmodules/luacheck@v1
@@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Lint with stylua
uses: JohnnyMorganz/stylua-action@v3
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 80cc074a..1f7eeeb5 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -7,7 +7,7 @@ jobs:
luarocks-upload:
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
env:
diff --git a/.github/workflows/sanitizer.yml b/.github/workflows/sanitizer.yml
index d3a30c7c..03d9f520 100644
--- a/.github/workflows/sanitizer.yml
+++ b/.github/workflows/sanitizer.yml
@@ -6,7 +6,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 384895f0..63346053 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -13,7 +13,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
id: vim
with: