aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTimo Rothenpieler2022-08-17 15:23:02 +0200
committerGert Doering2022-08-17 16:01:09 +0200
commit9b17fed14bc534353d9a5e2d90d902bb093df3c2 (patch)
tree2a8c5602e1ab426cf6e6b1770ef872bc00b5aaa0 /.github
parent5c4fa12b0be29dcb18edac62c8c29f91f4ff59b1 (diff)
downloadopenvpn-9b17fed14bc534353d9a5e2d90d902bb093df3c2.zip
openvpn-9b17fed14bc534353d9a5e2d90d902bb093df3c2.tar.gz
Github Actions: update used actions
In the case of the Microsoft action, this fixes security relevant issues according to their release notes: https://github.com/microsoft/setup-msbuild/releases Unfortunately they don't appear to be following the usual scheme of v1 referring to all v1.x.x, but instead v1 just points to v1.0.0. The primary change with all the Github-Provided actions is the switch to a more up-to-date NodeJS version (16). Not all that relevant when you just use the action as is, but on top of that, the old versions are in low-maintenance mode, and basically are considered obsolete. Github is actively migrating people to the latest ones via dependabot wherever they can. Acked-by: Arne Schwabe <arne@rfc2549.org> Message-Id: <20220817132302.538-1-timo@rothenpieler.org> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg24954.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml24
1 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index c89d3c8..49b7d6d 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -13,7 +13,7 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y uncrustify
- name: Checkout OpenVPN
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
path: openvpn
- name: Show uncrustify version
@@ -27,7 +27,7 @@ jobs:
- name: Show changes on standard output
run: git diff
working-directory: openvpn
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: uncrustify-changes.patch
path: 'openvpn/uncrustify-changes.patch'
@@ -60,12 +60,12 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y mingw-w64 libtool automake autoconf man2html unzip
- name: Checkout ovpn-dco-win
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
repository: OpenVPN/ovpn-dco-win
path: ovpn-dco-win
- name: Checkout OpenVPN
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
path: openvpn
@@ -75,7 +75,7 @@ jobs:
- name: Cache dependencies
id: cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: '~/mingw/'
key: ${{ matrix.target }}-mingw-${{ env.OPENSSL_VERSION }}-${{ env.LZO_VERSION }}-${{ env.PKCS11_HELPER_VERSION }}-${{ env.TAP_WINDOWS_VERSION }}
@@ -226,7 +226,7 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y liblzo2-dev libpam0g-dev liblz4-dev libcap-ng-dev linux-libc-dev man2html libcmocka-dev python3-docutils libtool automake autoconf ${SSLPKG} ${NLPKG}
- name: Checkout OpenVPN
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: autoconf
run: autoreconf -fvi
- name: configure
@@ -250,7 +250,7 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y liblzo2-dev libpam0g-dev liblz4-dev libcap-ng-dev linux-libc-dev man2html clang libcmocka-dev python3-docutils libtool automake autoconf libmbedtls-dev
- name: Checkout OpenVPN
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: autoconf
run: autoreconf -fvi
- name: configure
@@ -288,7 +288,7 @@ jobs:
- name: Install dependencies
run: brew install openssl@1.1 openssl@3 lzo lz4 man2html cmocka libtool automake autoconf
- name: Checkout OpenVPN
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: autoconf
run: autoreconf -fvi
- name: configure
@@ -319,13 +319,13 @@ jobs:
runs-on: windows-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Add MSBuild to PATH
- uses: microsoft/setup-msbuild@v1
+ uses: microsoft/setup-msbuild@v1.1
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '3.x'
@@ -345,7 +345,7 @@ jobs:
msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform="${{ matrix.plat }}" .
- name: Archive artifacts
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: artifacts-${{ matrix.plat }}
path: |