ci: update action versions to remove node warning (#3029)

Since Node.js 16 actions are deprecated, and updating the actions to use
Node.js 20 is recommended. All actions in `ci.yml` have a newer version,
this change bumps the actions to next versions.
This commit is contained in:
Tuna Alikaşifoğlu 2024-04-22 10:35:17 +03:00 committed by GitHub
parent bb36f71b77
commit 74eb25d579
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,7 @@ jobs:
os: [ubuntu-latest] os: [ubuntu-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Install Neovim - name: Install Neovim
shell: bash shell: bash
run: | run: |
@ -31,7 +31,7 @@ jobs:
needs: tests needs: tests
if: ${{ github.ref == 'refs/heads/main' }} if: ${{ github.ref == 'refs/heads/main' }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: panvimdoc - name: panvimdoc
uses: kdheepak/panvimdoc@main uses: kdheepak/panvimdoc@main
with: with:
@ -40,7 +40,7 @@ jobs:
demojify: true demojify: true
treesitter: true treesitter: true
- name: Push changes - name: Push changes
uses: stefanzweifel/git-auto-commit-action@v4 uses: stefanzweifel/git-auto-commit-action@v5
with: with:
commit_message: "chore(build): auto-generate vimdoc" commit_message: "chore(build): auto-generate vimdoc"
commit_user_name: "github-actions[bot]" commit_user_name: "github-actions[bot]"
@ -54,14 +54,14 @@ jobs:
- tests - tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: google-github-actions/release-please-action@v3 - uses: google-github-actions/release-please-action@v4
id: release id: release
with: with:
release-type: simple release-type: simple
package-name: LazyVim package-name: LazyVim
extra-files: | extra-files: |
lua/lazyvim/config/init.lua lua/lazyvim/config/init.lua
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: tag stable versions - name: tag stable versions
if: ${{ steps.release.outputs.release_created }} if: ${{ steps.release.outputs.release_created }}
run: | run: |