Remove fetch-depth: 0 from CI checkout
After reading the documentation for 2 seconds, it turns out that we actually wanted `fetch-depth: 1`, and coincidentally, that's the default.
This commit is contained in:
parent
4ceb68b953
commit
4607046162
|
@ -18,11 +18,10 @@ jobs:
|
||||||
version: [GAMEID]
|
version: [GAMEID]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Checkout the repository (shallow clone)
|
# Checkout the repository
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
# Set Git config
|
# Set Git config
|
||||||
|
|
Loading…
Reference in New Issue