Skip to content

Commit 8cda65e

Browse files
committed
chore: update CI actions version
1 parent a932228 commit 8cda65e

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build.yml

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

4343
steps:
4444
- name: 📥 Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4646

4747
- name: 🖥️ Setup Environment
4848
uses: ./.github/actions/setup
@@ -61,7 +61,7 @@ jobs:
6161
6262
- name: 🦥 Cache vcpkg binary (Windows)
6363
if: ${{ matrix.os == 'windows-latest' }}
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: ${{ env.VCPKG_DEFAULT_BINARY_CACHE }}
6767
key: vcpkg-${{ matrix.os }}-${{ matrix.config }}-${{ env.VCPKG_COMMIT }}

.github/workflows/format.yml

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

2121
steps:
2222
- name: 📥 Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
set-safe-directory: true
2626

.github/workflows/python.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: 📥 Checkout
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343

4444
- name: 🖥️ Setup Environment
4545
uses: ./.github/actions/setup
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: 🦥 Cache vcpkg binary
6060
if: ${{ matrix.os == 'windows-latest' }}
61-
uses: actions/cache@v4
61+
uses: actions/cache@v5
6262
with:
6363
path: ${{ env.VCPKG_DEFAULT_BINARY_CACHE }}
6464
key: vcpkg-${{ matrix.os }}-Release-${{ env.VCPKG_COMMIT }}
@@ -96,7 +96,7 @@ jobs:
9696
./venv/bin/python -c "import viennaps; print(viennaps.__doc__)"
9797
9898
- name: 📦 Upload Artifact
99-
uses: actions/upload-artifact@v4
99+
uses: actions/upload-artifact@v7
100100
with:
101101
name: Pre-Built (${{ matrix.os }})
102102
path: venv
@@ -123,7 +123,7 @@ jobs:
123123

124124
steps:
125125
- name: 📥 Checkout
126-
uses: actions/checkout@v4
126+
uses: actions/checkout@v6
127127

128128
- name: 🖥️ Setup Environment
129129
uses: ./.github/actions/setup
@@ -166,7 +166,7 @@ jobs:
166166
CIBW_ARCHS_WINDOWS: auto64
167167

168168
- name: 📦 Upload Artifact
169-
uses: actions/upload-artifact@v4
169+
uses: actions/upload-artifact@v7
170170
with:
171171
name: wheels-${{ matrix.os }}
172172
path: ./wheelhouse/*.whl
@@ -183,7 +183,7 @@ jobs:
183183

184184
steps:
185185
- name: 📦 Download Wheels
186-
uses: actions/download-artifact@v4
186+
uses: actions/download-artifact@v8
187187
with:
188188
pattern: wheels-*
189189
path: dist

0 commit comments

Comments
 (0)