Skip to content

Commit

Permalink
Merge pull request #346 from NOAA-OWP/fetchDepth
Browse files Browse the repository at this point in the history
Increasing fetch depth of automations
  • Loading branch information
epag authored Oct 22, 2024
2 parents 07d75b2 + 7855a9f commit 48a4ecb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/commitChecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v1
with:
fetch-depth: 0

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/databaseMigrationChecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/dockerRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v1
with:
fetch-depth: 0

# Zips the docker related components of the release to store them
- name: Tar Docker
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v1
with:
fetch-depth: 0

# Downloads the pre-release release to copy the artifacts used for testing
- uses: robinraju/release-downloader@v1.10
Expand Down

0 comments on commit 48a4ecb

Please sign in to comment.