Skip to content

Commit bb72e81

Browse files
authored
ci: fix failed actions (#95)
1 parent 424a137 commit bb72e81

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: "Formatting check with Stylua"
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Lint with stylua
1515
uses: JohnnyMorganz/[email protected]
1616
with:
@@ -20,7 +20,7 @@ jobs:
2020
name: "Linter check with Selene"
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- uses: NTBBloodbath/[email protected]
2525
with:
2626
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
release-type: simple
1616
package-name: one_monokai.nvim
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: tag major and minor versions
1919
if: ${{ steps.release.outputs.release_created }}
2020
run: |

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
include:
1515
- os: ubuntu-latest
1616
neovim: stable
17-
url: https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.tar.gz
17+
url: https://github.com/neovim/neovim/releases/download/stable/nvim-linux-x86_64.tar.gz
1818
- os: ubuntu-latest
1919
neovim: nightly
20-
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
20+
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux-x86_64.tar.gz
2121
- os: macos-14
2222
neovim: stable
2323
url: https://github.com/neovim/neovim/releases/download/stable/nvim-macos-arm64.tar.gz
@@ -26,10 +26,10 @@ jobs:
2626
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-macos-arm64.tar.gz
2727
runs-on: ${{ matrix.os }}
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v4
3030
- run: date +%F > todays-date
3131
- name: Restore cache for today's nightly.
32-
uses: actions/cache@v2
32+
uses: actions/cache@v4
3333
with:
3434
path: _neovim
3535
key: ${{ runner.os }}-${{ matrix.url }}-${{ hashFiles('todays-date') }}

0 commit comments

Comments
 (0)