From 6c2c3211e55ba9cd89171b3020e865f370973fd1 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Thu, 23 Jul 2026 12:54:53 +0000 Subject: [PATCH] Update actions/checkout action to v7 --- .github/workflows/build.yaml | 2 +- .github/workflows/fastbuild.yaml | 2 +- .github/workflows/lint.yaml | 2 +- .github/workflows/test.yaml | 2 +- scripts/third_party/jq/.github/workflows/ci.yml | 12 ++++++------ scripts/third_party/jq/.github/workflows/decnum.yml | 2 +- scripts/third_party/jq/.github/workflows/manpage.yml | 2 +- .../third_party/jq/.github/workflows/oniguruma.yml | 4 ++-- .../third_party/jq/.github/workflows/scanbuild.yml | 2 +- .../third_party/jq/.github/workflows/valgrind.yml | 2 +- scripts/third_party/jq/.github/workflows/website.yml | 2 +- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f9df369bf..2dfa1cc6a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -7,6 +7,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Build containers run: make -f Makefile.all all-container diff --git a/.github/workflows/fastbuild.yaml b/.github/workflows/fastbuild.yaml index 3a8ef3229..f2cf6a85b 100644 --- a/.github/workflows/fastbuild.yaml +++ b/.github/workflows/fastbuild.yaml @@ -7,6 +7,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Build containers run: make -f Makefile.all all-container ALL_PLATFORMS='linux/amd64 linux/arm64' diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 1a4f11f86..865127d68 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -7,6 +7,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Lint run: make -f Makefile.all lint diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 59dc48c37..470e89f92 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,6 +10,6 @@ jobs: runs-on: ${{ matrix.platform }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Test run: make -f Makefile.all test GOFLAGS="-v" diff --git a/scripts/third_party/jq/.github/workflows/ci.yml b/scripts/third_party/jq/.github/workflows/ci.yml index ac31b386b..5c0273628 100644 --- a/scripts/third_party/jq/.github/workflows/ci.yml +++ b/scripts/third_party/jq/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: SUFFIX: linux-${{ matrix.arch }} steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: true - name: Install packages @@ -136,7 +136,7 @@ jobs: SUFFIX: macos-${{ matrix.arch }} steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: true - name: Install packages @@ -207,7 +207,7 @@ jobs: run: git config --system core.autocrlf false shell: bash - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: true - uses: msys2/setup-msys2@v2 @@ -260,7 +260,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: true - name: Install packages @@ -296,7 +296,7 @@ jobs: needs: linux steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Download executables uses: actions/download-artifact@v4 with: @@ -371,7 +371,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/jq-') steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Download artifacts uses: actions/download-artifact@v4 with: diff --git a/scripts/third_party/jq/.github/workflows/decnum.yml b/scripts/third_party/jq/.github/workflows/decnum.yml index 18484dfcd..2af6ad082 100644 --- a/scripts/third_party/jq/.github/workflows/decnum.yml +++ b/scripts/third_party/jq/.github/workflows/decnum.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: true - name: Install packages diff --git a/scripts/third_party/jq/.github/workflows/manpage.yml b/scripts/third_party/jq/.github/workflows/manpage.yml index 72f105770..f7b412518 100644 --- a/scripts/third_party/jq/.github/workflows/manpage.yml +++ b/scripts/third_party/jq/.github/workflows/manpage.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v5 with: diff --git a/scripts/third_party/jq/.github/workflows/oniguruma.yml b/scripts/third_party/jq/.github/workflows/oniguruma.yml index 332ad64b8..df89d0a46 100644 --- a/scripts/third_party/jq/.github/workflows/oniguruma.yml +++ b/scripts/third_party/jq/.github/workflows/oniguruma.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install packages run: | sudo apt-get update @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install packages run: | sudo apt-get update diff --git a/scripts/third_party/jq/.github/workflows/scanbuild.yml b/scripts/third_party/jq/.github/workflows/scanbuild.yml index b113fbcf9..0579fdaae 100644 --- a/scripts/third_party/jq/.github/workflows/scanbuild.yml +++ b/scripts/third_party/jq/.github/workflows/scanbuild.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: true - name: Install packages diff --git a/scripts/third_party/jq/.github/workflows/valgrind.yml b/scripts/third_party/jq/.github/workflows/valgrind.yml index 76dedb64b..4c1c63f85 100644 --- a/scripts/third_party/jq/.github/workflows/valgrind.yml +++ b/scripts/third_party/jq/.github/workflows/valgrind.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: true - name: Install packages diff --git a/scripts/third_party/jq/.github/workflows/website.yml b/scripts/third_party/jq/.github/workflows/website.yml index 14a242f87..b1a51c973 100644 --- a/scripts/third_party/jq/.github/workflows/website.yml +++ b/scripts/third_party/jq/.github/workflows/website.yml @@ -15,7 +15,7 @@ jobs: working-directory: docs steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v5 with: