Skip to content

Commit

Permalink
Merge pull request #1593 from GEOS-ESM/feature/mathomp4/fix-github-ac…
Browse files Browse the repository at this point in the history
…tions

Fix GitHub Actions issue
  • Loading branch information
tclune committed Jul 7, 2022
2 parents c105a13 + 309cd8f commit 7ed00f2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/workflow.yml
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
build_test_mapl:
name: Build and Test MAPL
name: Build and Test MAPL GNU
runs-on: ubuntu-latest
container:
image: gmao/ubuntu20-geos-env-mkl:v7.5.0-openmpi_4.1.2-gcc_11.2.0
Expand All @@ -34,9 +34,12 @@ jobs:
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set all directories as git safe
run: |
git config --global --add safe.directory '*'
- name: Versions etc.
run: |
gfortran --version
Expand Down Expand Up @@ -87,9 +90,12 @@ jobs:
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set all directories as git safe
run: |
git config --global --add safe.directory '*'
- name: Versions etc.
run: |
ifort --version
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Moved to `checkout@v3` action due to git safe directory issue

### Removed

### Deprecated
Expand Down

0 comments on commit 7ed00f2

Please sign in to comment.