Skip to content

Commit

Permalink
Merge pull request #683 from streeve/checkout_v3
Browse files Browse the repository at this point in the history
Update GHA checkout to v3
  • Loading branch information
streeve authored Oct 5, 2023
2 parents fa9e58a + b659ddf commit c716032
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ jobs:
run: |
ccache -z
- name: Checkout kokkos
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
repository: kokkos/kokkos
ref: ${{ matrix.kokkos_ver }}
Expand All @@ -280,7 +280,7 @@ jobs:
cmake --install build
- name: Checkout arborx
if: ${{ matrix.arborx == 'ArborX' }}
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
repository: arborx/ArborX
ref: v1.2
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
cmake --install build
- name: Checkout hypre
if: ${{ matrix.hypre == 'HYPRE' }}
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
repository: hypre-space/hypre
ref: v2.22.1
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
cmake --build build --parallel 2
cmake --install build
- name: Checkout Cabana
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
- name: Build Cabana
env:
SANITIZER: ${{ matrix.sanitizer }}
Expand Down Expand Up @@ -414,7 +414,7 @@ jobs:
uses: codecov/codecov-action@v1
- name: Checkout gh-pages
if: ${{ matrix.doxygen == 'ON' }}
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: 'gh-pages'
path: 'html'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
image: ghcr.io/ecp-copa/ci-containers/${{ matrix.distro }}
steps:
- name: Checkout kokkos
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
repository: kokkos/kokkos
ref: develop
Expand All @@ -32,7 +32,7 @@ jobs:
cmake --build build --parallel 2
cmake --install build
- name: Checkout arborx
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
repository: arborx/ArborX
ref: master
Expand All @@ -44,7 +44,7 @@ jobs:
cmake --build build --parallel 2
cmake --install build
- name: Checkout Cabana
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
- name: Build Cabana
run: |
cmake -B build -DCMAKE_INSTALL_PREFIX=$HOME/Cabana -DCMAKE_PREFIX_PATH="$HOME/kokkos;$HOME/arborx" -DCabana_ENABLE_TESTING=ON -DCabana_ENABLE_EXAMPLES=ON -DCabana_REQUIRE_${{ matrix.backend }}=ON -DVALGRIND_EXECUTABLE=False -DCMAKE_DISABLE_FIND_PACKAGE_HDF5=ON ${{ github.event.inputs.cmake_args }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout kokkos
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
repository: kokkos/kokkos
ref: master
path: kokkos
- name: Checkout arborx
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
repository: arborx/ArborX
ref: master
Expand All @@ -36,13 +36,13 @@ jobs:
run: |
git clone --depth 1 --branch v2.3.0 https://bitbucket.org/icl/heffte.git heffte
- name: Checkout hypre
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
repository: hypre-space/hypre
ref: v2.22.1
path: hypre
- name: Checkout Cabana
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3
with:
path: cabana

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run clang-format style check
uses: jidicula/[email protected]
with:
Expand Down

0 comments on commit c716032

Please sign in to comment.