Skip to content

Commit 472b4d1

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ef77ae1 commit 472b4d1

File tree

13 files changed

+19
-19
lines changed

13 files changed

+19
-19
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- run: sudo apt-get install libopenblas-dev liblapack-dev
1818
- run: make DLONG=${{ matrix.long }} USE_LAPACK=${{ matrix.lapack }}
1919
- run: make test DLONG=${{ matrix.long }} USE_LAPACK=${{ matrix.lapack }}
@@ -22,7 +22,7 @@ jobs:
2222

2323
# runs-on: windows-latest
2424
# steps:
25-
# - uses: actions/checkout@v4
25+
# - uses: actions/checkout@v5
2626
# - run: choco install clapack
2727
# - run: make
2828
# - run: make test
@@ -37,7 +37,7 @@ jobs:
3737

3838
runs-on: macos-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
- run: brew install openblas lapack
4242
- run: make DLONG=${{ matrix.long }} USE_LAPACK=${{ matrix.lapack }}
4343
- run: make test DLONG=${{ matrix.long }} USE_LAPACK=${{ matrix.lapack }}

.github/workflows/build_mkl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# source /opt/intel/mkl/bin/mklvars.sh
3232
3333
- name: checkout project code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
- name: Build SCS MKL and test
3737
run: |

.github/workflows/build_openmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: checkout project code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: install deps
1818
run: sudo apt-get install libopenblas-dev liblapack-dev

.github/workflows/build_spectral.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- run: sudo apt-get update && sudo apt-get install -y libopenblas-dev liblapack-dev
1717
- run: make DLONG=${{ matrix.long }} USE_LAPACK=1 USE_SPECTRAL_CONES=${{ matrix.spectral }}
1818
- run: make test DLONG=${{ matrix.long }} USE_LAPACK=1 USE_SPECTRAL_CONES=${{ matrix.spectral }}
@@ -28,7 +28,7 @@ jobs:
2828

2929
runs-on: macos-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
- run: brew update && brew install openblas lapack
3333
- run: make DLONG=${{ matrix.long }} USE_LAPACK=1 USE_SPECTRAL_CONES=${{ matrix.spectral }}
3434
- run: make test DLONG=${{ matrix.long }} USE_LAPACK=1 USE_SPECTRAL_CONES=${{ matrix.spectral }}

.github/workflows/buildpp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
linux:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- run: |
1212
sudo apt-get install libopenblas-dev liblapack-dev
1313
export CC=g++
@@ -19,7 +19,7 @@ jobs:
1919
2020
# runs-on: windows-latest
2121
# steps:
22-
# - uses: actions/checkout@v4
22+
# - uses: actions/checkout@v5
2323
# - run: choco install clapack
2424
# - run: make
2525
# - run: make test
@@ -28,7 +28,7 @@ jobs:
2828
mac:
2929
runs-on: macos-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
- run: |
3333
brew install openblas lapack
3434
export CC=clang++

.github/workflows/cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
linux:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- run: |
1212
sudo apt-get install libopenblas-dev liblapack-dev
1313
mkdir out
@@ -26,7 +26,7 @@ jobs:
2626
mac:
2727
runs-on: macos-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- run: |
3131
brew install openblas lapack
3232
mkdir out

.github/workflows/cmake_cudss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: Jimver/[email protected]
1616
id: cuda-toolkit
1717
with:

.github/workflows/cmake_mkl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# source /opt/intel/mkl/bin/mklvars.sh
2626
2727
- name: checkout project code
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: Build SCS MKL and test
3131
run: |

.github/workflows/cmake_openmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
linux:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- run: |
1212
sudo apt-get install libopenblas-dev liblapack-dev
1313
mkdir out

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Check out
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
with:
1212
submodules: 'recursive'
1313

0 commit comments

Comments
 (0)