diff options
| author | dundargoc <gocdundar@gmail.com> | 2022-12-21 14:15:02 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-12-21 17:11:59 +0100 |
| commit | e8b765bee1f760b0153fb4edf2391ff5d7a85475 (patch) | |
| tree | f6ebdf4bb023c2eae59245d2af0eb1201e8ed316 /.github | |
| parent | Update parsers: v (diff) | |
| download | nvim-treesitter-e8b765bee1f760b0153fb4edf2391ff5d7a85475.tar nvim-treesitter-e8b765bee1f760b0153fb4edf2391ff5d7a85475.tar.gz nvim-treesitter-e8b765bee1f760b0153fb4edf2391ff5d7a85475.tar.bz2 nvim-treesitter-e8b765bee1f760b0153fb4edf2391ff5d7a85475.tar.lz nvim-treesitter-e8b765bee1f760b0153fb4edf2391ff5d7a85475.tar.xz nvim-treesitter-e8b765bee1f760b0153fb4edf2391ff5d7a85475.tar.zst nvim-treesitter-e8b765bee1f760b0153fb4edf2391ff5d7a85475.zip | |
ci: use builtin jq instead of downloading it
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/update-lockfile.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/update-lockfile.yml b/.github/workflows/update-lockfile.yml index a42c4e077..c95ecf73a 100644 --- a/.github/workflows/update-lockfile.yml +++ b/.github/workflows/update-lockfile.yml @@ -21,9 +21,6 @@ jobs: env: NVIM_TAG: stable run: | - wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 - mv ./jq-linux64 /tmp/jq - chmod +x /tmp/jq wget https://github.com/josephburnett/jd/releases/download/v1.6.1/jd-amd64-linux mv ./jd-amd64-linux /tmp/jd chmod +x /tmp/jd @@ -41,7 +38,7 @@ jobs: ./nvim.appimage --headless -c "luafile ./scripts/write-lockfile.lua" -c "q" # Pretty print cp lockfile.json /tmp/lockfile.json - cat /tmp/lockfile.json | /tmp/jq --sort-keys > lockfile.json + cat /tmp/lockfile.json | jq --sort-keys > lockfile.json - name: Commit changes run: | |
