diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index d2a5a4b..95fd3f1 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest name: Generate Fidget documentation steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install luajit run: sudo apt install -y luajit diff --git a/.github/workflows/luarocks.yml b/.github/workflows/luarocks.yml index 0427d58..8054129 100644 --- a/.github/workflows/luarocks.yml +++ b/.github/workflows/luarocks.yml @@ -14,7 +14,7 @@ jobs: luarocks-upload: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Required to count the commits - name: Get Version diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 32abdc3..b45c54c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,13 +14,13 @@ jobs: nvim-versions: ['stable', 'nightly'] name: Run Tests steps: - - name: checkout - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: rhysd/action-setup-vim@v1 + - name: Install Neovim + uses: rhysd/action-setup-vim@v1 with: neovim: true version: ${{ matrix.nvim-versions }} - - name: run tests + - name: Run tests run: nvim --clean --headless -u tests/minimal_init.lua -c "PlenaryBustedDirectory tests/ { minimal_init = 'tests/minimal_init.lua' }"