From b81a7f428bc0ae32df485c4c15637230eb60f459 Mon Sep 17 00:00:00 2001 From: Tim Duesterhus Date: Wed, 13 Aug 2025 19:13:31 +0200 Subject: [PATCH] CI: Update to actions/checkout@v5 No functional change, but we should keep this current. see 5f4ddb54b05ae0355b1f64c22263a6bc381410df see 5c923f1869881156bf3a25c9659655ae10f7dbd0 --- .github/workflows/aws-lc-template.yml | 2 +- .github/workflows/codespell.yml | 2 +- .github/workflows/compliance.yml | 2 +- .github/workflows/contrib.yml | 2 +- .github/workflows/coverity.yml | 2 +- .github/workflows/cross-zoo.yml | 2 +- .github/workflows/fedora-rawhide.yml | 4 ++-- .github/workflows/illumos.yml | 2 +- .github/workflows/musl.yml | 2 +- .github/workflows/netbsd.yml | 2 +- .github/workflows/openssl-nodeprecated.yml | 2 +- .github/workflows/quic-interop-aws-lc.yml | 4 ++-- .github/workflows/quic-interop-libressl.yml | 4 ++-- .github/workflows/quictls.yml | 2 +- .github/workflows/vtest.yml | 4 ++-- .github/workflows/windows.yml | 2 +- .github/workflows/wolfssl.yml | 2 +- 17 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/aws-lc-template.yml b/.github/workflows/aws-lc-template.yml index b016d477eb..60f6e607ff 100644 --- a/.github/workflows/aws-lc-template.yml +++ b/.github/workflows/aws-lc-template.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install VTest run: | scripts/build-vtest.sh diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 705ad6ea52..da42f9278e 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: codespell-project/codespell-problem-matcher@v1.2.0 - uses: codespell-project/actions-codespell@master with: diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index 6f8d1efc63..80c8a0125d 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install h2spec id: install-h2spec run: | diff --git a/.github/workflows/contrib.yml b/.github/workflows/contrib.yml index 4e14744811..cd41673945 100644 --- a/.github/workflows/contrib.yml +++ b/.github/workflows/contrib.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Compile admin/halog/halog run: | make admin/halog/halog diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 06df6eef1d..d420aa9a50 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install apt dependencies run: | sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none diff --git a/.github/workflows/cross-zoo.yml b/.github/workflows/cross-zoo.yml index ba78996d84..3dd638a16f 100644 --- a/.github/workflows/cross-zoo.yml +++ b/.github/workflows/cross-zoo.yml @@ -99,7 +99,7 @@ jobs: sudo apt-get -yq --force-yes install \ gcc-${{ matrix.platform.arch }} \ ${{ matrix.platform.libs }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: install quictls diff --git a/.github/workflows/fedora-rawhide.yml b/.github/workflows/fedora-rawhide.yml index 130f874489..8965e464bc 100644 --- a/.github/workflows/fedora-rawhide.yml +++ b/.github/workflows/fedora-rawhide.yml @@ -24,7 +24,7 @@ jobs: container: image: fedora:rawhide steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | dnf -y install awk diffutils git pcre-devel zlib-devel pcre2-devel 'perl(FindBin)' perl-IPC-Cmd 'perl(File::Copy)' 'perl(File::Compare)' lua-devel socat findutils systemd-devel clang @@ -67,4 +67,4 @@ jobs: - name: Run Unit tests id: unittests run: | - make unit-tests \ No newline at end of file + make unit-tests diff --git a/.github/workflows/illumos.yml b/.github/workflows/illumos.yml index 2bcc9d9f3f..18284e4159 100644 --- a/.github/workflows/illumos.yml +++ b/.github/workflows/illumos.yml @@ -13,7 +13,7 @@ jobs: contents: read steps: - name: "Checkout repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Build on VM" uses: vmactions/solaris-vm@v1 diff --git a/.github/workflows/musl.yml b/.github/workflows/musl.yml index a05661f334..54906b51a3 100644 --- a/.github/workflows/musl.yml +++ b/.github/workflows/musl.yml @@ -20,7 +20,7 @@ jobs: run: | ulimit -c unlimited echo '/tmp/core/core.%h.%e.%t' > /proc/sys/kernel/core_pattern - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: apk add gcc gdb make tar git python3 libc-dev linux-headers pcre-dev pcre2-dev openssl-dev lua5.3-dev grep socat curl musl-dbg lua5.3-dbg jose - name: Install VTest diff --git a/.github/workflows/netbsd.yml b/.github/workflows/netbsd.yml index b15a6dc9ac..1c31aa9686 100644 --- a/.github/workflows/netbsd.yml +++ b/.github/workflows/netbsd.yml @@ -13,7 +13,7 @@ jobs: contents: read steps: - name: "Checkout repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Build on VM" uses: vmactions/netbsd-vm@v1 diff --git a/.github/workflows/openssl-nodeprecated.yml b/.github/workflows/openssl-nodeprecated.yml index a9237fb17a..6038870f09 100644 --- a/.github/workflows/openssl-nodeprecated.yml +++ b/.github/workflows/openssl-nodeprecated.yml @@ -22,7 +22,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install VTest run: | scripts/build-vtest.sh diff --git a/.github/workflows/quic-interop-aws-lc.yml b/.github/workflows/quic-interop-aws-lc.yml index 51d5e3232a..37680e6ddb 100644 --- a/.github/workflows/quic-interop-aws-lc.yml +++ b/.github/workflows/quic-interop-aws-lc.yml @@ -19,7 +19,7 @@ jobs: packages: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Log in to the Container registry uses: docker/login-action@v3 @@ -64,7 +64,7 @@ jobs: if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Log in to the Container registry uses: docker/login-action@v3 diff --git a/.github/workflows/quic-interop-libressl.yml b/.github/workflows/quic-interop-libressl.yml index 96ea1995be..e348aea1a9 100644 --- a/.github/workflows/quic-interop-libressl.yml +++ b/.github/workflows/quic-interop-libressl.yml @@ -19,7 +19,7 @@ jobs: packages: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Log in to the Container registry uses: docker/login-action@v3 @@ -62,7 +62,7 @@ jobs: if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Log in to the Container registry uses: docker/login-action@v3 diff --git a/.github/workflows/quictls.yml b/.github/workflows/quictls.yml index 76b6d3bcd1..a6870dbb50 100644 --- a/.github/workflows/quictls.yml +++ b/.github/workflows/quictls.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install VTest run: | scripts/build-vtest.sh diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml index 2363589468..4e859a4c8b 100644 --- a/.github/workflows/vtest.yml +++ b/.github/workflows/vtest.yml @@ -23,7 +23,7 @@ jobs: outputs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Generate Build Matrix env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -44,7 +44,7 @@ jobs: TMPDIR: /tmp OT_CPP_VERSION: 1.6.0 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 100 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 29ad16fca1..3a6f4f8026 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -35,7 +35,7 @@ jobs: - USE_THREAD=1 - USE_ZLIB=1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: msys2/setup-msys2@v2 with: install: >- diff --git a/.github/workflows/wolfssl.yml b/.github/workflows/wolfssl.yml index 0f79f7fe38..7dbc6a279c 100644 --- a/.github/workflows/wolfssl.yml +++ b/.github/workflows/wolfssl.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install VTest run: | scripts/build-vtest.sh -- 2.47.3