Skip to content

Commit

Permalink
fix(ci): upgrade checkout v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn committed Feb 15, 2024
1 parent 2ef46f5 commit 1f2aaf3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Stylua
uses: JohnnyMorganz/stylua-action@v4
with:
Expand All @@ -19,7 +21,7 @@ jobs:
name: pandoc to vimdoc
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_VIMDOC_TOKEN }}
- name: panvimdoc
Expand All @@ -40,7 +42,9 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: rhysd/action-setup-vim@v1
id: vim
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
release-type: simple
package-name: hurl.nvim
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: tag stable versions
if: ${{ steps.release.outputs.release_created }}
run: |
Expand Down

0 comments on commit 1f2aaf3

Please sign in to comment.