From 3bd112de2a986bda2384f7a9e4245eeb15cc1e05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Aug 2025 00:47:43 +0200 Subject: [PATCH] Chore(deps): Bump actions/checkout from 4 to 5 (#2327) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/backport-to-stable.yml | 2 +- .github/workflows/build-base-image.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/backport-to-stable.yml b/.github/workflows/backport-to-stable.yml index 8e1e768d..658e061d 100644 --- a/.github/workflows/backport-to-stable.yml +++ b/.github/workflows/backport-to-stable.yml @@ -15,7 +15,7 @@ jobs: if: github.event.commits[0].distinct == true steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Needed for full git history diff --git a/.github/workflows/build-base-image.yml b/.github/workflows/build-base-image.yml index 535134c5..5fec6330 100644 --- a/.github/workflows/build-base-image.yml +++ b/.github/workflows/build-base-image.yml @@ -17,7 +17,7 @@ jobs: permissions: packages: write steps: - - uses: actions/checkout@v4.1.4 + - uses: actions/checkout@v5 - name: Download Widevine CDM client files from private repository shell: bash env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8c9ca1a..0a1d8186 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: outputs: version: ${{ steps.vars.outputs.tag }} steps: - - uses: actions/checkout@v4.1.4 + - uses: actions/checkout@v5 - name: Get tag id: vars run: >- @@ -90,7 +90,7 @@ jobs: - build-artifact - pypi-publish steps: - - uses: actions/checkout@v4.1.4 + - uses: actions/checkout@v5 - name: Retrieve release distributions uses: actions/download-artifact@v5 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1babeaef..65b9d550 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5.6.0 with: @@ -45,7 +45,7 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5.6.0 with: -- 2.34.1