diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/downstream.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/lint.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/test-core.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/update-parsers.yml | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml index 03fb42a36..e9f69fb72 100644 --- a/.github/workflows/downstream.yml +++ b/.github/workflows/downstream.yml @@ -15,7 +15,7 @@ jobs: env: NVIM: "nvim" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: tree-sitter/setup-action/cli@v2 - name: Install and prepare Neovim @@ -31,7 +31,7 @@ jobs: run: curl -fL https://github.com/ribru17/ts_query_ls/releases/latest/download/ts_query_ls-x86_64-unknown-linux-gnu.tar.gz | tar -xz - name: Clone textobjects - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: nvim-treesitter/nvim-treesitter-textobjects ref: main @@ -44,7 +44,7 @@ jobs: - name: Clone context if: always() - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: nvim-treesitter/nvim-treesitter-context ref: master diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 27a75f8c0..41830b225 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: name: Lint Lua files runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Format run: | @@ -28,7 +28,7 @@ jobs: name: Lint query files runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Format run: | @@ -42,7 +42,7 @@ jobs: name: Lint docs runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Check SUPPORTED_LANGUAGES run: | diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index 83a4729c1..3a0b3cffa 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -21,7 +21,7 @@ jobs: env: NVIM: ${{ matrix.os == 'windows-latest' && 'nvim-win64\\bin\\nvim.exe' || 'nvim' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: tree-sitter/setup-action/cli@v2 - uses: ilammy/msvc-dev-cmd@v1 diff --git a/.github/workflows/update-parsers.yml b/.github/workflows/update-parsers.yml index 533fc2ddd..23741d761 100644 --- a/.github/workflows/update-parsers.yml +++ b/.github/workflows/update-parsers.yml @@ -17,7 +17,7 @@ jobs: name: Update parsers tier ${{ matrix.tier }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: main @@ -42,7 +42,7 @@ jobs: run: ./scripts/update-parsers.lua --tier=${{ matrix.tier }} - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: add-paths: lua/nvim-treesitter/parsers.lua token: ${{ steps.app-token.outputs.token }} |
