From d5971930c3c2ce435233deae3e6fb90aad169178 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Nov 2025 13:05:17 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 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/v5...v6) Updates `JamesIves/github-pages-deploy-action` from 4.7.3 to 4.7.4 - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](https://github.com/jamesives/github-pages-deploy-action/compare/v4.7.3...v4.7.4) 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) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- 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: JamesIves/github-pages-deploy-action dependency-version: 4.7.4 dependency-type: direct:production update-type: version-update:semver-patch 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 - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/builds.yml | 2 +- .github/workflows/demo.yml | 4 ++-- .github/workflows/docker.yml | 4 ++-- .github/workflows/docs.yml | 4 ++-- .github/workflows/main.yml | 12 ++++++------ .github/workflows/pr-labels.yml | 2 +- .github/workflows/public_docker_images.yml | 2 +- .github/workflows/publish.yml | 4 ++-- .github/workflows/pull_requests.yml | 2 +- .github/workflows/references.yml | 16 ++++++++-------- .github/workflows/scripts.yml | 8 ++++---- .github/workflows/style.yml | 4 ++-- 12 files changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 207ca37748..b4f237c1cd 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -15,7 +15,7 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] python: ["3.10", "3.11"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - if: matrix.os == 'macos-latest' name: Install MacOS prerequisites run: brew install cairo pango gdk-pixbuf libffi diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index f4d24536ce..6d5a4bd6b2 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -31,7 +31,7 @@ jobs: - if: matrix.os == 'macos-latest' name: Install MacOS prerequisites run: brew install cairo pango gdk-pixbuf libffi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -65,7 +65,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 3feb908f07..97242c8eae 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -10,7 +10,7 @@ jobs: docker-package: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Build docker image run: docker build -t doctr-py3.10-slim --build-arg SYSTEM=cpu . - name: Run docker container @@ -23,7 +23,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 0c6d5ff98f..d39abae125 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,7 +11,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: persist-credentials: false - name: Set up Python @@ -42,7 +42,7 @@ jobs: ssh-private-key: ${{ secrets.SSH_DEPLOY_KEY }} - name: Deploy to Github Pages - uses: JamesIves/github-pages-deploy-action@v4.7.3 + uses: JamesIves/github-pages-deploy-action@v4.7.4 with: BRANCH: gh-pages FOLDER: 'docs/build' diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 67ddef5f70..65389a3929 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -34,7 +34,7 @@ jobs: run: | coverage run -m pytest tests/common/ -rs coverage xml -o coverage-common.xml - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: coverage-common path: ./coverage-common.xml @@ -48,7 +48,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -70,7 +70,7 @@ jobs: coverage run -m pytest tests/pytorch/ -rs coverage xml -o coverage-pt.xml - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: coverage-pytorch path: ./coverage-pt.xml @@ -80,8 +80,8 @@ jobs: runs-on: ubuntu-latest needs: [ pytest-common, pytest-torch ] steps: - - uses: actions/checkout@v5 - - uses: actions/download-artifact@v5 + - uses: actions/checkout@v6 + - uses: actions/download-artifact@v6 - name: Upload coverage to Codecov uses: codecov/codecov-action@v5 with: diff --git a/.github/workflows/pr-labels.yml b/.github/workflows/pr-labels.yml index 722da31754..3b52b82a90 100644 --- a/.github/workflows/pr-labels.yml +++ b/.github/workflows/pr-labels.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up python uses: actions/setup-python@v6 - name: Install requests diff --git a/.github/workflows/public_docker_images.yml b/.github/workflows/public_docker_images.yml index 35f18611ac..7d0c51f334 100644 --- a/.github/workflows/public_docker_images.yml +++ b/.github/workflows/public_docker_images.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Log in to the Container registry uses: docker/login-action@v3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 65d9c1ccde..f8dc54b971 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: python: ["3.10"] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -52,7 +52,7 @@ jobs: python: ["3.10"] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index 2badb3efcf..016cebc13e 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -8,7 +8,7 @@ jobs: docs-build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/references.yml b/.github/workflows/references.yml index 10ef837051..556a49c74e 100644 --- a/.github/workflows/references.yml +++ b/.github/workflows/references.yml @@ -15,7 +15,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -46,7 +46,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -87,7 +87,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -121,7 +121,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -147,7 +147,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -173,7 +173,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -207,7 +207,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -234,7 +234,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/scripts.yml b/.github/workflows/scripts.yml index 2bc4f5a8b3..a3f1da9ab8 100644 --- a/.github/workflows/scripts.yml +++ b/.github/workflows/scripts.yml @@ -18,7 +18,7 @@ jobs: - if: matrix.os == 'macos-latest' name: Install MacOS prerequisites run: brew install cairo pango gdk-pixbuf libffi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -50,7 +50,7 @@ jobs: - if: matrix.os == 'macos-latest' name: Install MacOS prerequisites run: brew install cairo pango gdk-pixbuf libffi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -82,7 +82,7 @@ jobs: - if: matrix.os == 'macos-latest' name: Install MacOS prerequisites run: brew install cairo pango gdk-pixbuf libffi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -110,7 +110,7 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] python: ["3.10", "3.11"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 1d20d8a760..b9a066a994 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -14,7 +14,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: @@ -33,7 +33,7 @@ jobs: os: [ubuntu-latest] python: ["3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: