Skip to content

Commit

Permalink
Merge pull request #36 from z-shell/dependabot/github_actions/actions…
Browse files Browse the repository at this point in the history
…/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
ss-o authored Sep 16, 2023
2 parents 30ae098 + 05cb94b commit e55d663
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- 5.8.1
- 5.9
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: git clone --depth 1 -- https://github.com/z-shell/zi.git zi
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
build-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: git clone --depth 1 -- https://github.com/z-shell/zi.git zi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
)
steps:
- name: Checkout the latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/zsh-n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: "✨ Set matrix output"
Expand All @@ -35,7 +35,7 @@ jobs:
matrix: ${{ fromJSON(needs.zsh-matrix.outputs.matrix) }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: "⚡ Install dependencies"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/zunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Set matrix output"
id: set-matrix
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: command git clone --branch ${{ env.zi_branch }} --depth 1 -- https://github.com/z-shell/zi.git zi
- name: "⚡ Install dependencies"
run: |
Expand Down

0 comments on commit e55d663

Please sign in to comment.