diff options
author | w0rp <devw0rp@gmail.com> | 2023-09-07 20:38:32 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2023-09-07 20:38:32 +0100 |
commit | d52c3db238bd0761d72070792ebdb383cc7b8ffe (patch) | |
tree | 7524707f87b04590eb4b492c245251aa4c0e3521 | |
parent | 99a33d8d3fc423d83cabdae1c95c3bc2438b313b (diff) | |
download | ale-d52c3db238bd0761d72070792ebdb383cc7b8ffe.zip |
Try to fix GitHub Actions
-rw-r--r-- | .github/workflows/main.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 45cfc146..38723f61 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: build_image: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build docker run image shell: bash env: @@ -32,7 +32,7 @@ jobs: - '--neovim-08-only' - '--linters-only' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Run tests run: ./run-tests -v ${{ matrix.vim-version }} test_ale_windows: @@ -41,8 +41,9 @@ jobs: - name: Configure Git # Stop git from changing newlines run: git config --global core.autocrlf input - - uses: actions/checkout@v2 - path: C:\testplugin + - uses: actions/checkout@v4 + with: + path: C:\testplugin - name: Try to Restore Vim id: cache-vim uses: actions/cache@v3 @@ -69,7 +70,7 @@ jobs: path: C:\vader key: ${{ runner.os }}-vader - name: Install Vader - if: steps.cache-vim-vader.outputs.cache-hit != 'true' + if: steps.cache-vader.outputs.cache-hit != 'true' shell: pwsh run: if (!(Test-Path -Path C:\vader)){ |