Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: "Formatting check with Stylua"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Lint with stylua
uses: JohnnyMorganz/[email protected]
with:
Expand All @@ -20,7 +20,7 @@ jobs:
name: "Linter check with Selene"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: NTBBloodbath/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
release-type: simple
package-name: one_monokai.nvim
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: tag major and minor versions
if: ${{ steps.release.outputs.release_created }}
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
include:
- os: ubuntu-latest
neovim: stable
url: https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.tar.gz
url: https://github.com/neovim/neovim/releases/download/stable/nvim-linux-x86_64.tar.gz
- os: ubuntu-latest
neovim: nightly
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux-x86_64.tar.gz
- os: macos-14
neovim: stable
url: https://github.com/neovim/neovim/releases/download/stable/nvim-macos-arm64.tar.gz
Expand All @@ -26,10 +26,10 @@ jobs:
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-macos-arm64.tar.gz
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: date +%F > todays-date
- name: Restore cache for today's nightly.
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: _neovim
key: ${{ runner.os }}-${{ matrix.url }}-${{ hashFiles('todays-date') }}
Expand Down
Loading