aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-12-17 15:35:24 +0100
committerGitHub <noreply@github.com>2022-12-17 06:35:24 -0800
commit5d96ace4fc2c02c205b69f2d8872ecb1e420901f (patch)
tree97c1f983a1174658045df91054e6dd769fdfaa77 /.github/workflows
parentci: don't auto-close config changes (diff)
downloadnvim-lspconfig-5d96ace4fc2c02c205b69f2d8872ecb1e420901f.tar
nvim-lspconfig-5d96ace4fc2c02c205b69f2d8872ecb1e420901f.tar.gz
nvim-lspconfig-5d96ace4fc2c02c205b69f2d8872ecb1e420901f.tar.bz2
nvim-lspconfig-5d96ace4fc2c02c205b69f2d8872ecb1e420901f.tar.lz
nvim-lspconfig-5d96ace4fc2c02c205b69f2d8872ecb1e420901f.tar.xz
nvim-lspconfig-5d96ace4fc2c02c205b69f2d8872ecb1e420901f.tar.zst
nvim-lspconfig-5d96ace4fc2c02c205b69f2d8872ecb1e420901f.zip
ci: bump action versions (#2322)
Diffstat (limited to '.github/workflows')
-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.yml6
-rw-r--r--.github/workflows/sanitizer.yml2
-rw-r--r--.github/workflows/test.yml4
7 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 927a7d9e..961f15b4 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@v2
+ - uses: actions/checkout@v3
- 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 df35bae0..b1fdc17e 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@v2
+ - uses: actions/checkout@v3
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 00297930..32d96375 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@v2
+ - uses: actions/checkout@v3
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 a0fdeaa5..0cd56e42 100644
--- a/.github/workflows/docgen.yml
+++ b/.github/workflows/docgen.yml
@@ -11,7 +11,7 @@ jobs:
permissions:
contents: write
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 0d514a82..78f511bd 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v3
- name: Run luacheck
- uses: lunarmodules/luacheck@v0
+ uses: lunarmodules/luacheck@v1
with:
args: lua/* test/*
@@ -30,8 +30,8 @@ jobs:
uses: actions/checkout@v3
- name: Lint with stylua
- uses: JohnnyMorganz/stylua-action@v1.1.2
+ uses: JohnnyMorganz/stylua-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- # CLI arguments
+ version: latest
args: --check .
diff --git a/.github/workflows/sanitizer.yml b/.github/workflows/sanitizer.yml
index afd7e92a..d3a30c7c 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@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 0
- run: |
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index d3a21491..aaec37bf 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Setup build dependencies
run: |
sudo apt update &&
@@ -42,7 +42,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout sources
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Setup build dependencies
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" &&