Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mini] Use newer version in GH actions #1178

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading