diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/commitlint.yml | 4 | ||||
-rw-r--r-- | .github/workflows/format.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/install.yaml | 6 | ||||
-rw-r--r-- | .github/workflows/lint.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/plugins.yml | 6 |
5 files changed, 11 insertions, 13 deletions
diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 93c776e3..de6be24f 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -6,10 +6,10 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/[email protected] + - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: wagoid/commitlint-github-action@v4 + - uses: wagoid/commitlint-github-action@v5 with: configFile: .github/workflows/commitlint.config.js helpURL: https://github.com/LunarVim/LunarVim/blob/rolling/CONTRIBUTING.md#commit-messages diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 27b061ef..64da97e6 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -15,7 +15,7 @@ jobs: name: "Formatting check with Stylua" runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Lint with stylua uses: JohnnyMorganz/stylua-action@v1 @@ -29,7 +29,7 @@ jobs: name: "Formatting check with shfmt" runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Go uses: actions/setup-go@v2 diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 8ab27e88..5f72bcac 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -33,13 +33,13 @@ jobs: neovim: nightly runs-on: ${{ matrix.runner }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install neovim binary from release env: RELEASE_VER: ${{ matrix.neovim }} run: | - echo "$HOME/.local/bin" >> $GITHUB_PATH + echo "$HOME/.local/bin" >> "$GITHUB_PATH" bash ./utils/installer/install-neovim-from-release - name: Install LunarVim @@ -72,7 +72,7 @@ jobs: shell: pwsh steps: # it's not currently possbile to run tests on windows, see nvim-lua/plenary.nvim#255 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install neovim binary uses: rhysd/action-setup-vim@v1 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index c238a5d1..f136d442 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -15,7 +15,7 @@ jobs: name: "Linting with luacheck" runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: leafo/gh-actions-lua@v8 - uses: leafo/gh-actions-luarocks@v4 @@ -30,7 +30,7 @@ jobs: name: Shellcheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run ShellCheck uses: ludeeus/action-shellcheck@master with: diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index d5c6310f..46c88c81 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -25,15 +25,13 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/checkout@v2 - with: - ref: ${{ github.head_ref }} + - uses: actions/checkout@v3 - name: Install neovim binary uses: rhysd/action-setup-vim@v1 with: neovim: true - version: v0.8.0 + version: nightly - name: Install LunarVim timeout-minutes: 4 |