mirror of https://github.com/OpenVPN/openvpn-gui
GHA: update checkout and cache actions to v3
Avoids warnings because of deprecated Node.js version. Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>pull/638/head
parent
9e1b57404e
commit
3b283d470b
|
@ -22,7 +22,7 @@ jobs:
|
||||||
name: 'msvc - ${{matrix.arch}} ${{ matrix.ovpn3.name }}'
|
name: 'msvc - ${{matrix.arch}} ${{ matrix.ovpn3.name }}'
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: lukka/get-cmake@latest
|
- uses: lukka/get-cmake@latest
|
||||||
|
|
||||||
- name: Restore artifacts, or setup vcpkg (do not install any package)
|
- name: Restore artifacts, or setup vcpkg (do not install any package)
|
||||||
|
@ -65,7 +65,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt update && sudo apt install -y mingw-w64 libtool automake autoconf
|
run: sudo apt update && sudo apt install -y mingw-w64 libtool automake autoconf
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
path: openvpn-gui
|
path: openvpn-gui
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ jobs:
|
||||||
|
|
||||||
- name: Cache dependencies
|
- name: Cache dependencies
|
||||||
id: cache
|
id: cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: '~/mingw/'
|
path: '~/mingw/'
|
||||||
key: mingw-${{ matrix.target }}
|
key: mingw-${{ matrix.target }}
|
||||||
|
|
Loading…
Reference in New Issue