From 41794cd7f38d65e8b746c2202cc9380945a39855 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Dec 2025 20:59:42 +0000 Subject: [PATCH] chore: bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v6) Updates `actions/setup-python` from 1 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v1...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-linux-ubuntu-latest.yml | 4 ++-- .github/workflows/ci-mac.yml | 4 ++-- .github/workflows/ci-windows.yml | 4 ++-- .github/workflows/ci_fuzz_linux.yml | 6 +++--- .github/workflows/docker.yml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-linux-ubuntu-latest.yml b/.github/workflows/ci-linux-ubuntu-latest.yml index b269640..798a3e5 100644 --- a/.github/workflows/ci-linux-ubuntu-latest.yml +++ b/.github/workflows/ci-linux-ubuntu-latest.yml @@ -15,10 +15,10 @@ jobs: ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/ci-mac.yml b/.github/workflows/ci-mac.yml index 847a20c..491a1c7 100644 --- a/.github/workflows/ci-mac.yml +++ b/.github/workflows/ci-mac.yml @@ -15,10 +15,10 @@ jobs: ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 04cc57e..15e7390 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -15,10 +15,10 @@ jobs: python-version: ["3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/ci_fuzz_linux.yml b/.github/workflows/ci_fuzz_linux.yml index e10d57d..356dee0 100644 --- a/.github/workflows/ci_fuzz_linux.yml +++ b/.github/workflows/ci_fuzz_linux.yml @@ -18,10 +18,10 @@ jobs: ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} @@ -64,7 +64,7 @@ jobs: - name: Upload broken PDFs as artifact # Always upload, even if job fails. if: failure() || always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: tests_fuzz_broken_pdfs path: build/tests_fuzz diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b9acc53..5900e56 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Upgrade pip run: |