diff options
| -rw-r--r-- | .github/workflows/lint.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/test-queries.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/tests.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/update-lockfile.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/update-readme.yml | 4 |
5 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8d0bb121f..021d53568 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,7 +10,7 @@ jobs: name: Luacheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Prepare run: | @@ -25,7 +25,7 @@ jobs: name: StyLua runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Lint with stylua uses: JohnnyMorganz/stylua-action@v1 with: diff --git a/.github/workflows/test-queries.yml b/.github/workflows/test-queries.yml index 738bad9a4..a39190104 100644 --- a/.github/workflows/test-queries.yml +++ b/.github/workflows/test-queries.yml @@ -55,9 +55,9 @@ jobs: NVIM: ${{ matrix.os == 'windows-2022' && 'nvim-win64\\bin\\nvim.exe' || 'nvim' }} ALLOWED_INSTALLATION_FAILURES: ${{ matrix.os == 'windows-2022' && 'rnoweb' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ilammy/msvc-dev-cmd@v1 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 - name: Install and prepare Neovim env: @@ -68,7 +68,7 @@ jobs: - name: Setup Parsers Cache id: parsers-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ./parser/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e8f462119..8e4551bf7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,8 +27,8 @@ jobs: env: CC: ${{ matrix.cc }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 - name: Test Dependencies run: | @@ -47,7 +47,7 @@ jobs: - name: Setup Parsers Cache id: parsers-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ./parser/ diff --git a/.github/workflows/update-lockfile.yml b/.github/workflows/update-lockfile.yml index de70b5704..a42c4e077 100644 --- a/.github/workflows/update-lockfile.yml +++ b/.github/workflows/update-lockfile.yml @@ -13,7 +13,7 @@ jobs: name: Update lockfile runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: master @@ -54,7 +54,7 @@ jobs: git clean -xf - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v4 with: title: "Update lockfile.json: ${{ env.UPDATED_PARSERS }}" branch: update-lockfile-pr diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml index 62f8bd4fc..b8d40a009 100644 --- a/.github/workflows/update-readme.yml +++ b/.github/workflows/update-readme.yml @@ -11,7 +11,7 @@ jobs: name: Update README runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Prepare env: @@ -32,7 +32,7 @@ jobs: git clean -xf - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v4 with: commit-message: Update README title: Update README |
