Skip to content

Commit 18a6631

Browse files
committed
bump workflow action versions
1 parent ca1cf82 commit 18a6631

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/build-deploy.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
CIBW_ENVIRONMENT_MACOS: CPPFLAGS="-I/usr/local/opt/llvm/include" LDFLAGS="-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib" CXX="/usr/local/opt/llvm/bin/clang++" CC="/usr/local/opt/llvm/bin/clang"
6060

6161
steps:
62-
- uses: actions/checkout@v2
62+
- uses: actions/checkout@v3
6363
with:
6464
fetch-depth: 0
6565
submodules: true
@@ -98,7 +98,7 @@ jobs:
9898
- uses: lukka/get-cmake@latest
9999
# Restore both vcpkg and its artifacts from the GitHub cache service.
100100
- name: Restore vcpkg and its artifacts.
101-
uses: actions/cache@v2
101+
uses: actions/cache@v3
102102
with:
103103
# The first path is where vcpkg generates artifacts while consuming the vcpkg.json manifest file.
104104
# The second path is the location of vcpkg (it contains the vcpkg executable and data files).
@@ -127,7 +127,7 @@ jobs:
127127
# On Windows runners, let's ensure to have the Developer Command Prompt environment setup correctly. As used here the Developer Command Prompt created is targeting x64 and using the default the Windows SDK.
128128
- uses: ilammy/msvc-dev-cmd@v1
129129

130-
- uses: actions/setup-python@v2
130+
- uses: actions/setup-python@v4
131131
name: Install Python
132132
with:
133133
python-version: '3.9'
@@ -149,7 +149,7 @@ jobs:
149149
python3 -m cibuildwheel --output-dir ${{matrix.builddir}}
150150
151151
- name: Upload wheels as artifacts
152-
uses: actions/upload-artifact@v2
152+
uses: actions/upload-artifact@v3
153153
with:
154154
name: ${{ matrix.os }}-wheels
155155
path: ${{matrix.builddir}}/
@@ -167,17 +167,17 @@ jobs:
167167

168168
steps:
169169
- name: Checkout
170-
uses: actions/checkout@v2
170+
uses: actions/checkout@v3
171171
with:
172172
submodules: false
173173

174174
- name: Set up Python
175-
uses: actions/setup-python@v2
175+
uses: actions/setup-python@v4
176176
with:
177177
python-version: ${{ matrix.python-version }}
178178

179179
- name: Download wheels from artifacts
180-
uses: actions/download-artifact@v2
180+
uses: actions/download-artifact@v3
181181
with:
182182
name: ${{ matrix.os }}-wheels
183183
path: wheelhouse
@@ -207,12 +207,12 @@ jobs:
207207
if: contains(github.ref, 'tags')
208208
steps:
209209
- name: Download wheels from artifacts
210-
uses: actions/download-artifact@v2
210+
uses: actions/download-artifact@v3
211211
with:
212212
path: wheelhouse
213213

214214
- name: Set up Python
215-
uses: actions/setup-python@v2
215+
uses: actions/setup-python@v4
216216
with:
217217
python-version: '3.9'
218218

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
VCPKG_ROOT: ${{ github.workspace }}/external/LibAPR/vcpkg
3333
EXTRA_CMAKE_ARGS: "-DCMAKE_TOOLCHAIN_FILE='${{ github.workspace }}/external/LibAPR/vcpkg/scripts/buildsystems/vcpkg.cmake'"
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636
with:
3737
fetch-depth: 0
3838
submodules: true
@@ -58,7 +58,7 @@ jobs:
5858
- uses: lukka/get-cmake@latest
5959
# Restore both vcpkg and its artifacts from the GitHub cache service.
6060
- name: Restore vcpkg and its artifacts.
61-
uses: actions/cache@v2
61+
uses: actions/cache@v3
6262
with:
6363
# The first path is where vcpkg generates artifacts while consuming the vcpkg.json manifest file.
6464
# The second path is the location of vcpkg (it contains the vcpkg executable and data files).
@@ -82,7 +82,7 @@ jobs:
8282
# On Windows runners, let's ensure to have the Developer Command Prompt environment setup correctly. As used here the Developer Command Prompt created is targeting x64 and using the default the Windows SDK.
8383
- uses: ilammy/msvc-dev-cmd@v1
8484

85-
- uses: actions/setup-python@v2
85+
- uses: actions/setup-python@v4
8686
name: Install Python
8787
with:
8888
python-version: '3.9'

.github/workflows/quick-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
VCPKG_ROOT: ${{ github.workspace }}/external/LibAPR/vcpkg
3838
EXTRA_CMAKE_ARGS: "-DCMAKE_TOOLCHAIN_FILE='${{ github.workspace }}/external/LibAPR/vcpkg/scripts/buildsystems/vcpkg.cmake'"
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
with:
4242
fetch-depth: 0
4343
submodules: true
@@ -55,7 +55,7 @@ jobs:
5555
- uses: lukka/get-cmake@latest
5656
# Restore both vcpkg and its artifacts from the GitHub cache service.
5757
- name: Restore vcpkg and its artifacts.
58-
uses: actions/cache@v2
58+
uses: actions/cache@v3
5959
with:
6060
# The first path is where vcpkg generates artifacts while consuming the vcpkg.json manifest file.
6161
# The second path is the location of vcpkg (it contains the vcpkg executable and data files).
@@ -79,7 +79,7 @@ jobs:
7979
# On Windows runners, let's ensure to have the Developer Command Prompt environment setup correctly. As used here the Developer Command Prompt created is targeting x64 and using the default the Windows SDK.
8080
- uses: ilammy/msvc-dev-cmd@v1
8181

82-
- uses: actions/setup-python@v2
82+
- uses: actions/setup-python@v4
8383
name: Install Python
8484
with:
8585
python-version: '3.9'

0 commit comments

Comments
 (0)