Skip to content

Commit e2a0bd2

Browse files
adjusts remaining drift around checkout configuration (#1435)
We missed a couple cases in #1433 --------- Signed-off-by: Adrian Cole <[email protected]>
1 parent 28425e8 commit e2a0bd2

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Prevent use of implicit GitHub Actions read-only token GITHUB_TOKEN.
3333
# We push Javadocs to the gh-pages branch on commit.
3434
token: ${{ secrets.GH_TOKEN }}
35-
fetch-depth: 0 # allow build-bin/idl_to_gh_pages to get the full history
35+
fetch-depth: 0 # build-bin/javadoc_to_gh_pages checks out gh-pages
3636
- name: Setup java
3737
uses: actions/setup-java@v4
3838
with:

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
steps:
2323
- name: Checkout Repository
2424
uses: actions/checkout@v4
25-
with:
26-
fetch-depth: 0 # full git history for license check
2725
- name: Setup java
2826
uses: actions/setup-java@v4
2927
with:

brave/src/test/java/brave/sampler/BoundarySamplerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class BoundarySamplerTest extends SamplerTest {
1515
}
1616

1717
@Override Percentage expectedErrorProbability() {
18-
return withPercentage(10);
18+
return withPercentage(11);
1919
}
2020

2121
@Test void acceptsOneInTenThousandProbability() {

build-bin/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ jobs:
7272
steps:
7373
- name: Checkout Repository
7474
uses: actions/checkout@v4
75-
with:
76-
fetch-depth: 0 # full git history for license check
7775
- name: Test
7876
run: |
7977
build-bin/configure_test
@@ -114,8 +112,6 @@ jobs:
114112
steps:
115113
- name: Checkout Repository
116114
uses: actions/checkout@v4
117-
with:
118-
fetch-depth: 1 # only needed to get the sha label
119115
- name: Configure Deploy
120116
run: build-bin/configure_deploy
121117
env:

0 commit comments

Comments
 (0)