Skip to content

Commit

Permalink
Bump workflow actions to node20
Browse files Browse the repository at this point in the history
Workflows should transition to node20 actions by Spring 2024.

See https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/

Signed-off-by: Joseph Schuchart <[email protected]>
(cherry picked from commit a72921e)
  • Loading branch information
devreal committed Jul 2, 2024
1 parent a3acb33 commit df03d98
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile-cuda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sudo dpkg -i cuda-keyring_1.1-1_all.deb
sudo apt update
sudo apt install -y cuda-toolkit
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build Open MPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile-rocm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
echo -e 'Package: *\nPin: release o=repo.radeon.com\nPin-Priority: 600' | sudo tee /etc/apt/preferences.d/rocm-pin-600
sudo apt update
sudo apt install -y rocm-hip-runtime
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build Open MPI
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ompi_nvidia.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: [self-hosted, linux, x64, nvidia]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Checkout CI scripts
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Mellanox/jenkins_scripts
path: ompi_ci
Expand Down

0 comments on commit df03d98

Please sign in to comment.