Skip to content

Commit fcc7983

Browse files
committed
Get fetch-depth:0 right.
1 parent 804411b commit fcc7983

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
steps:
1616
- uses: actions/checkout@v4
17-
fetch-depth: 0
17+
with:
18+
fetch-depth: 0
1819
- name: prep
1920
run: |
2021
sudo apt-get install acl libacl1-dev attr libattr1-dev liblz4-dev libzstd-dev libxxhash-dev python3-cmarkgfm openssl
@@ -52,7 +53,8 @@ jobs:
5253
runs-on: macos-latest
5354
steps:
5455
- uses: actions/checkout@v4
55-
fetch-depth: 0
56+
with:
57+
fetch-depth: 0
5658
- name: prep
5759
run: |
5860
brew install automake openssl xxhash zstd lz4
@@ -88,7 +90,8 @@ jobs:
8890
if: (github.event_name == 'schedule' || contains(github.event.head_commit.message, '[buildall]'))
8991
steps:
9092
- uses: actions/checkout@v4
91-
fetch-depth: 0
93+
with:
94+
fetch-depth: 0
9295
- name: cygwin
9396
run: choco install -y --no-progress cygwin cyg-get
9497
- name: prep

.github/workflows/freebsd-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
name: Test rsync on FreeBSD
1313
steps:
1414
- uses: actions/checkout@v4
15-
fetch-depth: 0
15+
with:
16+
fetch-depth: 0
1617
- name: Test in FreeBSD
1718
id: test
1819
uses: vmactions/freebsd-vm@v1

.github/workflows/solaris-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
name: Test rsync on Solaris
1313
steps:
1414
- uses: actions/checkout@v4
15-
fetch-depth: 0
15+
with:
16+
fetch-depth: 0
1617
- name: Test in Solaris
1718
id: test
1819
uses: vmactions/solaris-vm@v1

0 commit comments

Comments
 (0)