@@ -12,14 +12,14 @@ jobs:
1212 runs-on : windows-latest
1313 steps :
1414 - name : Checkout
15- uses : actions/checkout@v2
15+ uses : actions/checkout@v3
1616
1717 - name : Install choco packages
1818 run : choco install --allow-downgrade wget --version 1.20.3.20190531
1919
2020 - name : Cache snap7-archive
2121 id : snap7-archive
22- uses : actions/cache@v2
22+ uses : actions/cache@v3
2323 with :
2424 path : snap7-full-1.4.2.7z
2525 key : ${{ env.snap7-archive-url }}
4242 run : .github/build_scripts/repack_wheel_windows.ps1 Win64 wheelhouse/${{ runner.os }}
4343
4444 - name : Upload artifacts
45- uses : actions/upload-artifact@v2
45+ uses : actions/upload-artifact@v3
4646 with :
4747 name : wheels
4848 path : wheelhouse/*/*.whl
@@ -52,11 +52,11 @@ jobs:
5252 runs-on : ubuntu-latest
5353 steps :
5454 - name : Checkout
55- uses : actions/checkout@v2
55+ uses : actions/checkout@v3
5656
5757 - name : Cache snap7-archive
5858 id : snap7-archive
59- uses : actions/cache@v2
59+ uses : actions/cache@v3
6060 with :
6161 path : snap7-full-1.4.2.7z
6262 key : ${{ env.snap7-archive-url }}
9494 run : bash .github/build_scripts/repack_wheel.sh wheelhouse dist wheelhouse/${{ runner.os }}
9595
9696 - name : Upload artifacts
97- uses : actions/upload-artifact@v2
97+ uses : actions/upload-artifact@v3
9898 with :
9999 name : wheels
100100 path : wheelhouse/*/*.whl
@@ -104,11 +104,11 @@ jobs:
104104 runs-on : macos-11
105105 steps :
106106 - name : Checkout
107- uses : actions/checkout@v2
107+ uses : actions/checkout@v3
108108
109109 - name : Cache snap7-archive
110110 id : snap7-archive
111- uses : actions/cache@v2
111+ uses : actions/cache@v3
112112 with :
113113 path : snap7-full-1.4.2.7z
114114 key : ${{ env.snap7-archive-url }}
@@ -153,7 +153,7 @@ jobs:
153153 run : bash .github/build_scripts/repack_wheel.sh wheelhouse dist wheelhouse/${{ runner.os }}
154154
155155 - name : Upload artifacts
156- uses : actions/upload-artifact@v2
156+ uses : actions/upload-artifact@v3
157157 with :
158158 name : wheels
159159 path : wheelhouse/*/*.whl
@@ -168,10 +168,10 @@ jobs:
168168 python-version : ["3.7", "3.8", "3.9", "3.10"]
169169 steps :
170170 - name : Checkout
171- uses : actions/checkout@v2
171+ uses : actions/checkout@v3
172172
173173 - name : Set up Python ${{ matrix.python-version }}
174- uses : actions/setup-python@v2
174+ uses : actions/setup-python@v4
175175 with :
176176 python-version : ${{ matrix.python-version }}
177177
@@ -181,7 +181,7 @@ jobs:
181181 python3 -m pip install pytest
182182
183183 - name : Download artifacts
184- uses : actions/download-artifact@v2
184+ uses : actions/download-artifact@v3
185185 with :
186186 name : wheels
187187 path : wheelhouse
0 commit comments