Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and lkeegan committed Oct 9, 2023
1 parent 8036181 commit d94d7ef
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- os: windows-latest
blas: "OFF"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: "recursive"
- uses: actions/setup-python@v4
Expand All @@ -37,7 +37,11 @@ jobs:
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update -yy && sudo apt-get install -yy libopenblas-openmp-dev
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install libomp openblas
brew install llvm libomp openblas
clang++ --version
which clang++
$(brew --prefix llvm)/bin/clang++ --version
echo CXX="$(brew --prefix llvm)/bin/clang++" >> $GITHUB_ENV
fi
- name: Build & test
env:
Expand All @@ -58,7 +62,7 @@ jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: "recursive"
Expand Down

0 comments on commit d94d7ef

Please sign in to comment.