Skip to content

Commit dabdc6a

Browse files
authored
Merge pull request #50 from z-shell/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 4 to 6
2 parents c7d2ef8 + f2a2737 commit dabdc6a

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- 5.8.1
3434
- 5.9
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v6
3737
with:
3838
token: ${{ secrets.GITHUB_TOKEN }}
3939
- run: git clone --depth 1 -- https://github.com/z-shell/zi.git zi
@@ -66,7 +66,7 @@ jobs:
6666
build-latest:
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v6
7070
with:
7171
token: ${{ secrets.GITHUB_TOKEN }}
7272
- run: git clone --depth 1 -- https://github.com/z-shell/zi.git zi

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
)
1717
steps:
1818
- name: Checkout the latest code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
token: ${{ secrets.GITHUB_TOKEN }}
2222
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

.github/workflows/zsh-n.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix: ${{ steps.set-matrix.outputs.matrix }}
1818
steps:
1919
- name: ⤵️ Check out code from GitHub
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
submodules: recursive
2323
- name: "✨ Set matrix output"
@@ -35,7 +35,7 @@ jobs:
3535
matrix: ${{ fromJSON(needs.zsh-matrix.outputs.matrix) }}
3636
steps:
3737
- name: ⤵️ Check out code from GitHub
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
submodules: recursive
4141
- name: "⚡ Install dependencies"

.github/workflows/zunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
outputs:
1919
matrix: ${{ steps.set-matrix.outputs.matrix }}
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- name: "Set matrix output"
2323
id: set-matrix
2424
run: |
@@ -39,7 +39,7 @@ jobs:
3939
registry: ghcr.io
4040
username: ${{ github.repository_owner }}
4141
password: ${{ secrets.GITHUB_TOKEN }}
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v6
4343
- run: command git clone --branch ${{ env.zi_branch }} --depth 1 -- https://github.com/z-shell/zi.git zi
4444
- name: "⚡ Install dependencies"
4545
run: |

0 commit comments

Comments
 (0)