Skip to content

Commit

Permalink
ci: upgrade actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
JustAnotherID committed Feb 2, 2024
1 parent 27cf834 commit a333703
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Check Commit Num
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get New Commits
Expand All @@ -36,7 +36,7 @@ jobs:
if: ${{ needs.commit-num-check.outputs.commit-count > 0 }}
steps:
- name: Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Upload Documents
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Apt-get Update
run: sudo apt-get update
- name: Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
if: ${{ needs.commit-num-check.outputs.commit-count > 0 }}
steps:
- name: Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
if: ${{ needs.commit-num-check.outputs.commit-count > 0 }}
steps:
- name: Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
- name: Apt-get Update
run: sudo apt-get update
- name: Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Install Cross-compiler for Windows
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
fail-fast: true
steps:
- name: Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Install Go
Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:
needs: ui-build
steps:
- name: Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Android NDK
Expand Down Expand Up @@ -432,7 +432,7 @@ jobs:
- gocqhttp-android-build
steps:
- name: Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Set Env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Check Commit Num
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get New Commits
Expand Down

0 comments on commit a333703

Please sign in to comment.