Skip to content

Commit

Permalink
Update GitHub Actions to use blobless clones (#3318)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 authored Jan 14, 2025
1 parent 3e18fc4 commit 452b583
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none

- name: Build and Deploy Docs
uses: ./.github/actions/deploy-ford-docs
Expand All @@ -34,6 +37,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none

- name: Build and Deploy Dev Docs
uses: ./.github/actions/deploy-ford-docs
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/push-to-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
- name: Run the action
uses: devops-infra/[email protected]
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/push-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
- name: Run the action
uses: devops-infra/[email protected]
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/validate_yaml_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ jobs:
validate-YAML:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
- id: yaml-lint
name: yaml-lint
uses: ibiqlik/action-yamllint@v3
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none

- name: Build and Deploy Docs
uses: ./.github/actions/deploy-ford-docs
Expand Down Expand Up @@ -102,6 +105,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 1
filter: blob:none
- name: Set all directories as git safe
run: |
git config --global --add safe.directory '*'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Changed MAPL_ESMFRegridder to require the dstMaskValues to be added as grid attribute to use fixed masking, fixes UFS issue
- Increased formatting width of time index in ExtData2G diagnostic print
- Updated GitHub checkout action to use blobless clones

### Fixed

Expand Down

0 comments on commit 452b583

Please sign in to comment.