Skip to content

Commit 23802dc

Browse files
Merge pull request #64 from alliander-opensource/dependabot/github_actions/actions/upload-artifact-3
Bump actions/upload-artifact from 2 to 3
2 parents 9cb54c6 + a5c3174 commit 23802dc

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/black-and-clang-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131

3232
- name: Set up Python
33-
uses: actions/setup-python@v2
33+
uses: actions/setup-python@v3
3434
with:
3535
python-version: 3.8
3636

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sparse-solver: [ EIGEN, MKL, MKL_RUNTIME ]
3131

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

3535
- name: Run build script
3636
run: ./build.sh ${{ matrix.build-option }} ${{ matrix.sparse-solver }}
@@ -47,7 +47,7 @@ jobs:
4747
MKL_LIB: C:\conda_envs\cpp_pkgs\Library\lib
4848

4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v3
5151

5252
- name: Activate conda
5353
run: |
@@ -92,7 +92,7 @@ jobs:
9292
CMAKE_PREFIX_PATH: /usr/local
9393

9494
steps:
95-
- uses: actions/checkout@v2
95+
- uses: actions/checkout@v3
9696

9797
- name: Install cpp dependencies
9898
run: |
@@ -173,7 +173,7 @@ jobs:
173173
conda create --yes -p C:\conda_envs\cpp_pkgs -c conda-forge boost-cpp eigen mkl
174174
175175
steps:
176-
- uses: actions/checkout@v2
176+
- uses: actions/checkout@v3
177177

178178
- name: Set up QEMU
179179
if: matrix.platform == 'linux'
@@ -188,7 +188,7 @@ jobs:
188188
uses: pypa/[email protected]
189189

190190
- name: Keep wheel files
191-
uses: actions/upload-artifact@v2
191+
uses: actions/upload-artifact@v3
192192
with:
193193
name: wheelhouse
194194
path: ./wheelhouse/*.whl
@@ -202,15 +202,15 @@ jobs:
202202
TWINE_PASSWORD: ${{ secrets.PYPI_PASS }}
203203

204204
steps:
205-
- uses: actions/checkout@v2
205+
- uses: actions/checkout@v3
206206

207207
- name: Setup python
208-
uses: actions/setup-python@v2
208+
uses: actions/setup-python@v3
209209
with:
210210
python-version: '3.10'
211211
architecture: x64
212212

213-
- uses: actions/download-artifact@v2
213+
- uses: actions/download-artifact@v3
214214
with:
215215
name: wheelhouse
216216
path: wheelhouse

.github/workflows/reuse-compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323
- name: REUSE Compliance Check
2424
uses: fsfe/reuse-action@v1

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
SONAR_SERVER_URL: "https://sonarcloud.io"
2424
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2929
- name: Set up JDK 11

0 commit comments

Comments
 (0)