Skip to content

Commit bc5ae1e

Browse files
committed
ci: updated actions
1 parent 958b2cf commit bc5ae1e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
metis: metis
3030

3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333

3434
- name: Update Packages
3535
run: |
@@ -78,7 +78,7 @@ jobs:
7878
7979
- name: Cache Build
8080
id: cache-build
81-
uses: actions/cache@v2
81+
uses: actions/cache@v3
8282
with:
8383
path: ${{env.CCACHE_DIR}}
8484
key: ${{matrix.os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.gpu}}-${{matrix.metis}}-ccache-${{github.run_id}}

.github/workflows/macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
metis: metis
2626

2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
2929

3030
- name: Setup Dependencies
3131
run: >-
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Cache Build
4848
id: cache-build
49-
uses: actions/cache@v2
49+
uses: actions/cache@v3
5050
with:
5151
path: ${{env.CCACHE_DIR}}
5252
key: ${{matrix.os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-${{github.run_id}}

.github/workflows/windows.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env: x86_64
3131

3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3434

3535
- name: Setup Dependencies
3636
uses: msys2/setup-msys2@v2
@@ -63,7 +63,7 @@ jobs:
6363
6464
- name: Cache Build
6565
id: cache-build
66-
uses: actions/cache@v2
66+
uses: actions/cache@v3
6767
with:
6868
path: ${{env.CCACHE_DIR}}
6969
key: ${{runner.os}}-${{matrix.sys}}-${{matrix.env}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-${{github.run_id}}
@@ -131,7 +131,7 @@ jobs:
131131
marker: vc17
132132

133133
steps:
134-
- uses: actions/checkout@v2
134+
- uses: actions/checkout@v3
135135

136136
- name: Query Tags
137137
run: |
@@ -153,7 +153,7 @@ jobs:
153153
154154
- name: Cache LAPACK
155155
id: cache-lapack
156-
uses: actions/cache@v2
156+
uses: actions/cache@v3
157157
with:
158158
path: |
159159
${{env.CCACHE_DIR}}
@@ -187,7 +187,7 @@ jobs:
187187
- name: Cache METIS
188188
if: matrix.metis == 'metis'
189189
id: cache-metis
190-
uses: actions/cache@v2
190+
uses: actions/cache@v3
191191
with:
192192
path: metis/
193193
key: ${{matrix.msvc}}-metis-5.1.1-${{matrix.build_type}}

0 commit comments

Comments
 (0)