Skip to content

Commit

Permalink
[mini] Use newer version in GH actions (#1178)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxThevenet authored Oct 15, 2024
1 parent 987c5f6 commit 77b2643
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
env:
CXXFLAGS: "-Werror"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: install dependencies
run: |
.github/workflows/setup/nvcc11.sh
- name: CCache Cache
uses: actions/cache@v2
uses: actions/cache@v4
# - once stored under a key, they become immutable (even if local cache path content changes)
# - for a refresh the key has to change, e.g., hash of a tracked file in the key
with:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
# runs-on: ubuntu-20.04
# if: github.event.pull_request.draft == false
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Dependencies
# run: .github/workflows/setup/nvhpc.sh
# - name: Build & Install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cudaLocal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
env:
CXXFLAGS: "-Werror"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Build & Install
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/disabled/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: [email protected] C++14 OMPI
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Dependencies
run: .github/workflows/setup/macos.sh
- name: Build & Install
Expand All @@ -32,7 +32,7 @@ jobs:
name: [email protected] C++14 OMP OMPI
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Dependencies
run: .github/workflows/setup/macos_omp.sh
- name: Build & Install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
# -Werror
env: {CXXFLAGS: "-Wno-deprecated-declarations -Wno-error=pass-failed"}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: install dependencies
shell: bash
run: .github/workflows/setup/hip.sh

- name: CCache Cache
uses: actions/cache@v2
uses: actions/cache@v4
# - once stored under a key, they become immutable (even if local cache path content changes)
# - for a refresh the key has to change, e.g., hash of a tracked file in the key
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
runs-on: ubuntu-latest
env: {OMP_NUM_THREADS: 2}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Dependencies
run: .github/workflows/setup/ubuntu_ompi.sh
- name: CCache Cache
uses: actions/cache@v2
uses: actions/cache@v4
# - once stored under a key, they become immutable (even if local cache path content changes)
# - for a refresh the key has to change, e.g., hash of a tracked file in the key
with:
Expand All @@ -52,11 +52,11 @@ jobs:
runs-on: ubuntu-latest
env: {OMP_NUM_THREADS: 2}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Dependencies
run: .github/workflows/setup/ubuntu.sh
- name: CCache Cache
uses: actions/cache@v2
uses: actions/cache@v4
# - once stored under a key, they become immutable (even if local cache path content changes)
# - for a refresh the key has to change, e.g., hash of a tracked file in the key
with:
Expand All @@ -83,7 +83,7 @@ jobs:
# name: Clang@7 C++17 OMPI
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Dependencies
# run: .github/workflows/setup/ubuntu_clang.sh
# - name: Build & Install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
brew install ccache
brew link ccache
- name: CCache Cache
uses: actions/cache@v3
uses: actions/cache@v4
# - once stored under a key, they become immutable (even if local cache path content changes)
# - for a refresh the key has to change, e.g., hash of a tracked file in the key
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Non-ASCII characters
run: .github/workflows/source/hasNonASCII
- name: TABs
Expand All @@ -30,7 +30,7 @@ jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: s-weigand/setup-conda@v1
with:
update-conda: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: windows-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: CCache Cache
uses: actions/cache@v3
uses: actions/cache@v4
# - once stored under a key, they become immutable (even if local cache path content changes)
# - for a refresh the key has to change, e.g., hash of a tracked file in the key
with:
Expand Down Expand Up @@ -52,9 +52,9 @@ jobs:
runs-on: windows-2019
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: CCache Cache
uses: actions/cache@v3
uses: actions/cache@v4
# - once stored under a key, they become immutable (even if local cache path content changes)
# - for a refresh the key has to change, e.g., hash of a tracked file in the key
with:
Expand Down

0 comments on commit 77b2643

Please sign in to comment.