Skip to content

Commit 99798b6

Browse files
chore(deps): update actions/checkout action to v6
1 parent ce8d176 commit 99798b6

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: StyLua
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: JohnnyMorganz/stylua-action@v4
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/neovim.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Install Neovim
1919
uses: MunifTanjim/setup-neovim-action@v1
2020
- name: Run neovim
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: macos-latest
2727

2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- name: Install Neovim
3131
run: |
3232
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-macos-x86_64.tar.gz
@@ -41,7 +41,7 @@ jobs:
4141
name: Windows
4242
runs-on: windows-latest
4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
- name: Install Neovim
4646
run: |
4747
C:\msys64\usr\bin\wget.exe -q https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip

.github/workflows/patch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: write
1313

1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
ref: ${{ github.ref }}
1818
- name: panvimdoc
@@ -36,7 +36,7 @@ jobs:
3636
contents: write
3737

3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
with:
4141
ref: ${{ github.ref }}
4242
- name: Install Neovim

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
release-type: simple
1717
package-name: catppuccin
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: tag stable versions
2020
if: ${{ steps.release.outputs.release_created }}
2121
run: |

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
path: nvim
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
ref: user-configs
2626
path: user-configs

.github/workflows/vim.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Install Vim
1919
shell: bash
2020
run: |
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: macos-latest
3131

3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- name: Install Vim
3535
run: |
3636
brew install vim
@@ -43,7 +43,7 @@ jobs:
4343
name: Windows
4444
runs-on: windows-latest
4545
steps:
46-
- uses: actions/checkout@v5
46+
- uses: actions/checkout@v6
4747
- name: Install Vim
4848
run: |
4949
choco install vim

0 commit comments

Comments
 (0)