Skip to content

Commit

Permalink
adjusts remaining drift around checkout configuration (#1435)
Browse files Browse the repository at this point in the history
We missed a couple cases in #1433

---------

Signed-off-by: Adrian Cole <adrian@tetrate.io>
  • Loading branch information
codefromthecrypt committed Apr 14, 2024
1 parent 28425e8 commit e2a0bd2
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# Prevent use of implicit GitHub Actions read-only token GITHUB_TOKEN.
# We push Javadocs to the gh-pages branch on commit.
token: ${{ secrets.GH_TOKEN }}
fetch-depth: 0 # allow build-bin/idl_to_gh_pages to get the full history
fetch-depth: 0 # build-bin/javadoc_to_gh_pages checks out gh-pages
- name: Setup java
uses: actions/setup-java@v4
with:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # full git history for license check
- name: Setup java
uses: actions/setup-java@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion brave/src/test/java/brave/sampler/BoundarySamplerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class BoundarySamplerTest extends SamplerTest {
}

@Override Percentage expectedErrorProbability() {
return withPercentage(10);
return withPercentage(11);
}

@Test void acceptsOneInTenThousandProbability() {
Expand Down
4 changes: 0 additions & 4 deletions build-bin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # full git history for license check
- name: Test
run: |
build-bin/configure_test
Expand Down Expand Up @@ -114,8 +112,6 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1 # only needed to get the sha label
- name: Configure Deploy
run: build-bin/configure_deploy
env:
Expand Down

0 comments on commit e2a0bd2

Please sign in to comment.