mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-05-28 04:03:29 -04:00
GHA: Maintenance update November 2025
Includes the following renovate changes: - chore(deps): update dependency mbed-tls/mbedtls to v3.6.5 - chore(deps): update vcpkg digest to 3bbc280 - chore(deps): update dependency libressl/portable to v4.2.1 - chore(deps): update github actions - chore(deps): update dependency aws/aws-lc to v1.64.0 - chore(deps): update github actions Additionally, drop macos-13 since the worker is deprecated. Change-Id: Ifd63130832e3bf20bf9816887e218ae73e2f5cd1 Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com> Acked-by: Yuriy Darnobyt <yura.uddr@gmail.com> Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1381 Message-Id: <20251119135458.31160-1-gert@greenie.muc.de> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg34543.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
This commit is contained in:
parent
8d278223df
commit
92eaedbe7c
3 changed files with 34 additions and 34 deletions
60
.github/workflows/build.yaml
vendored
60
.github/workflows/build.yaml
vendored
|
|
@ -14,12 +14,12 @@ jobs:
|
|||
sudo apt update && sudo apt install -y python3-pip
|
||||
pip3 install pre-commit
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- name: Run clang-format
|
||||
run: pre-commit run -a --show-diff-on-failure || true
|
||||
- name: Check for changes
|
||||
run: git diff --output=format-changes.patch
|
||||
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: format-changes.patch
|
||||
path: format-changes.patch
|
||||
|
|
@ -44,12 +44,12 @@ jobs:
|
|||
VCPKG_INSTALLED_DIR: ${{ github.workspace }}/vcpkg/installed
|
||||
steps:
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: lukka/get-cmake@2ecc21724e5215b0e567bc399a2602d2ecb48541 # v4.1.1
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- uses: lukka/get-cmake@628dd514bed37cb0a609e84a6186cbbaa2fc0140 # v4.1.2
|
||||
- name: Install vcpkg
|
||||
uses: lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
|
||||
with:
|
||||
vcpkgGitCommitId: 9c5c2a0ab75aff5bcd08142525f6ff7f6f7ddeee
|
||||
vcpkgGitCommitId: 3bbc2809d3625cb83a0d7cbd413bd6ad769d46d4
|
||||
- name: Install dependencies
|
||||
run: ${VCPKG_ROOT}/vcpkg install openssl lz4 cmocka
|
||||
- name: configure OpenVPN with cmake
|
||||
|
|
@ -77,13 +77,13 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install -y mingw-w64 unzip build-essential wget python3-docutils man2html-base
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
|
||||
- uses: lukka/get-cmake@2ecc21724e5215b0e567bc399a2602d2ecb48541 # v4.1.1
|
||||
- uses: lukka/get-cmake@628dd514bed37cb0a609e84a6186cbbaa2fc0140 # v4.1.2
|
||||
- name: Restore from cache and install vcpkg
|
||||
uses: lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
|
||||
with:
|
||||
vcpkgGitCommitId: 9c5c2a0ab75aff5bcd08142525f6ff7f6f7ddeee
|
||||
vcpkgGitCommitId: 3bbc2809d3625cb83a0d7cbd413bd6ad769d46d4
|
||||
vcpkgJsonGlob: '**/mingw/vcpkg.json'
|
||||
|
||||
- name: Run CMake with vcpkg.json manifest
|
||||
|
|
@ -93,7 +93,7 @@ jobs:
|
|||
buildPreset: mingw-${{ matrix.arch }}
|
||||
buildPresetAdditionalArgs: "['--config Debug']"
|
||||
|
||||
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: openvpn-mingw-${{ matrix.arch }}
|
||||
path: |
|
||||
|
|
@ -101,7 +101,7 @@ jobs:
|
|||
${{ github.workspace }}/out/build/mingw/${{ matrix.arch }}/**/Debug/*.dll
|
||||
!${{ github.workspace }}/out/build/mingw/${{ matrix.arch }}/Debug/test_*.exe
|
||||
|
||||
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: openvpn-mingw-${{ matrix.arch }}-tests
|
||||
path: |
|
||||
|
|
@ -120,9 +120,9 @@ jobs:
|
|||
name: "mingw unittest ${{ matrix.test }} - ${{ matrix.arch }} - OSSL"
|
||||
steps:
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- name: Retrieve mingw unittest
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
||||
with:
|
||||
name: openvpn-mingw-${{ matrix.arch }}-tests
|
||||
path: unittests
|
||||
|
|
@ -164,7 +164,7 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install -y liblzo2-dev libpam0g-dev liblz4-dev libcap-ng-dev libnl-genl-3-dev linux-libc-dev man2html libcmocka-dev python3-docutils libtool automake autoconf ${SSLPKG} ${PKCS11PKG}
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- name: autoconf
|
||||
run: autoreconf -fvi
|
||||
- name: configure
|
||||
|
|
@ -194,7 +194,7 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install -y liblzo2-dev libpam0g-dev liblz4-dev libcap-ng-dev libnl-genl-3-dev linux-libc-dev man2html clang libcmocka-dev python3-docutils libtool automake autoconf libmbedtls-dev
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- name: autoconf
|
||||
run: autoreconf -fvi
|
||||
- name: configure
|
||||
|
|
@ -212,7 +212,7 @@ jobs:
|
|||
matrix:
|
||||
ssllib: [openssl@1.1, openssl@3, libressl]
|
||||
build: [normal, asan]
|
||||
os: [macos-13, macos-14, macos-15]
|
||||
os: [macos-14, macos-15]
|
||||
include:
|
||||
- build: asan
|
||||
cflags: "-fsanitize=address,undefined -fno-sanitize-recover=all -fno-optimize-sibling-calls -fsanitize-address-use-after-scope -fno-omit-frame-pointer -g -O1"
|
||||
|
|
@ -234,7 +234,7 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: brew install ${{matrix.ssllib}} lzo lz4 man2html cmocka libtool automake autoconf
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- name: Set environment
|
||||
run: |
|
||||
cat >>$GITHUB_ENV <<EOF;
|
||||
|
|
@ -266,8 +266,8 @@ jobs:
|
|||
|
||||
runs-on: windows-2025
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: lukka/get-cmake@2ecc21724e5215b0e567bc399a2602d2ecb48541 # v4.1.1
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- uses: lukka/get-cmake@628dd514bed37cb0a609e84a6186cbbaa2fc0140 # v4.1.2
|
||||
|
||||
- name: Install rst2html
|
||||
run: python -m pip install --upgrade pip docutils
|
||||
|
|
@ -275,7 +275,7 @@ jobs:
|
|||
- name: Restore artifacts, or setup vcpkg (do not install any package)
|
||||
uses: lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
|
||||
with:
|
||||
vcpkgGitCommitId: 9c5c2a0ab75aff5bcd08142525f6ff7f6f7ddeee
|
||||
vcpkgGitCommitId: 3bbc2809d3625cb83a0d7cbd413bd6ad769d46d4
|
||||
vcpkgJsonGlob: '**/windows/vcpkg.json'
|
||||
|
||||
- name: Run CMake with vcpkg.json manifest (NO TESTS)
|
||||
|
|
@ -294,7 +294,7 @@ jobs:
|
|||
testPreset: win-${{ matrix.arch }}-release
|
||||
testPresetAdditionalArgs: "['--output-on-failure']"
|
||||
|
||||
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: openvpn-msvc-${{ matrix.arch }}
|
||||
path: |
|
||||
|
|
@ -334,12 +334,12 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install -y liblzo2-dev libpam0g-dev liblz4-dev linux-libc-dev man2html clang libcmocka-dev python3-docutils libtool automake autoconf pkg-config libcap-ng-dev libnl-genl-3-dev
|
||||
- name: "libressl: checkout"
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
path: libressl
|
||||
# versioning=semver-coerced
|
||||
repository: libressl/portable
|
||||
ref: v4.1.0
|
||||
ref: v4.2.1
|
||||
- name: "libressl: autogen.sh"
|
||||
env:
|
||||
LIBRESSL_GIT_OPTIONS: "--no-single-branch"
|
||||
|
|
@ -357,7 +357,7 @@ jobs:
|
|||
- name: "ldconfig"
|
||||
run: sudo ldconfig
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- name: autoconf
|
||||
run: autoreconf -fvi
|
||||
- name: configure
|
||||
|
|
@ -398,13 +398,13 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install -y liblzo2-dev libpam0g-dev liblz4-dev linux-libc-dev man2html clang libcmocka-dev python3-docutils python3-jinja2 python3-jsonschema libtool automake autoconf pkg-config libcap-ng-dev libnl-genl-3-dev
|
||||
- name: "mbedtls: checkout"
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
path: mbedtls
|
||||
submodules: true
|
||||
# versioning=semver-coerced
|
||||
repository: Mbed-TLS/mbedtls
|
||||
ref: v3.6.4
|
||||
ref: v3.6.5
|
||||
- name: "mbedtls: make no_test"
|
||||
run: make -j3 no_test SHARED=1
|
||||
working-directory: mbedtls
|
||||
|
|
@ -412,7 +412,7 @@ jobs:
|
|||
run: sudo make install DESTDIR=/usr
|
||||
working-directory: mbedtls
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- name: autoconf
|
||||
run: autoreconf -fvi
|
||||
- name: configure
|
||||
|
|
@ -457,13 +457,13 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install -y gcc golang make liblzo2-dev libpam0g-dev liblz4-dev linux-libc-dev man2html clang libcmocka-dev python3-docutils python3-jinja2 python3-jsonschema libtool automake autoconf pkg-config libcap-ng-dev libnl-genl-3-dev
|
||||
- name: "AWS-LC: checkout"
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
path: aws-lc
|
||||
# versioning=semver-coerced
|
||||
repository: aws/aws-lc
|
||||
ref: v1.61.3
|
||||
- uses: lukka/get-cmake@2ecc21724e5215b0e567bc399a2602d2ecb48541 # v4.1.1
|
||||
ref: v1.64.0
|
||||
- uses: lukka/get-cmake@628dd514bed37cb0a609e84a6186cbbaa2fc0140 # v4.1.2
|
||||
- name: "AWS-LC: build"
|
||||
run: |
|
||||
mkdir build
|
||||
|
|
@ -472,7 +472,7 @@ jobs:
|
|||
ninja install
|
||||
working-directory: aws-lc
|
||||
- name: Checkout OpenVPN
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
- name: autoconf
|
||||
run: autoreconf -fvi
|
||||
- name: configure with AWS-LC
|
||||
|
|
|
|||
6
.github/workflows/coverity-scan.yml
vendored
6
.github/workflows/coverity-scan.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
steps:
|
||||
- name: Check submission cache
|
||||
id: check_submit
|
||||
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
|
||||
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
||||
with:
|
||||
path: |
|
||||
cov-int
|
||||
|
|
@ -25,7 +25,7 @@ jobs:
|
|||
|
||||
- name: Checkout OpenVPN
|
||||
if: steps.check_submit.outputs.cache-hit != 'true'
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
|
||||
- name: Download Coverity Build Tool
|
||||
if: steps.check_submit.outputs.cache-hit != 'true'
|
||||
|
|
@ -65,7 +65,7 @@ jobs:
|
|||
|
||||
- name: Cache submission
|
||||
if: steps.check_submit.outputs.cache-hit != 'true'
|
||||
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
|
||||
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
||||
with:
|
||||
path: |
|
||||
cov-int
|
||||
|
|
|
|||
2
.github/workflows/doxygen.yml
vendored
2
.github/workflows/doxygen.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
runs-on: ubuntu-24.04
|
||||
if: ${{ github.repository_owner == 'openvpn' || github.event_name == 'workflow_dispatch' }}
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
path: openvpn
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue