From ce64f79b75019586158d016370f3637324f251fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 11:17:05 +0000 Subject: [PATCH] Bump the github-actions-dependencies group with 3 updates Bumps the github-actions-dependencies group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-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 `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-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-dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/check_for_secrets.yml | 2 +- .github/workflows/github-pages.yml | 16 ++++++++-------- .github/workflows/kotlin_sdk_test.yml | 2 +- .github/workflows/publish_python_sdk.yml | 2 +- .github/workflows/python_sdk_test.yml | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/check_for_secrets.yml b/.github/workflows/check_for_secrets.yml index e876996b..1db4cdb4 100644 --- a/.github/workflows/check_for_secrets.yml +++ b/.github/workflows/check_for_secrets.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source branch - 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/github-pages.yml b/.github/workflows/github-pages.yml index 6742b29c..c3dec13d 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout branch (staging public_main_mirror) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: gopro/OpenGoPro-Staging ref: public_main_mirror @@ -31,7 +31,7 @@ jobs: copyright: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.PUSH_TO_PROTECTED_BRANCH }} @@ -61,7 +61,7 @@ jobs: build_kotlin_sdk: ${{ steps.check_kotlin_files.outputs.found_modified_kotlin_file }} steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 2 @@ -113,7 +113,7 @@ jobs: steps: - name: Checkout source branch (the PR branch) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: source @@ -127,7 +127,7 @@ jobs: python-version: 3.13.3 - name: Restore cached pip environment - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ matrix.path }} key: ${{ runner.os }}-3.13.3-pip-${{ hashFiles('demos/python/sdk_wireless_camera_control/poetry.lock') }} @@ -148,7 +148,7 @@ jobs: run: nox -s docs - name: Checkout target branch (the gh-pages branch) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: gh-pages path: target @@ -172,7 +172,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source branch (the PR branch) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: source @@ -189,7 +189,7 @@ jobs: run: ./gradlew dokkaHtml - name: Checkout target branch (the gh-pages branch) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: gh-pages path: target diff --git a/.github/workflows/kotlin_sdk_test.yml b/.github/workflows/kotlin_sdk_test.yml index 12a69c4d..bb047f8b 100644 --- a/.github/workflows/kotlin_sdk_test.yml +++ b/.github/workflows/kotlin_sdk_test.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout source branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 - uses: actions/setup-java@v5 with: diff --git a/.github/workflows/publish_python_sdk.yml b/.github/workflows/publish_python_sdk.yml index 80278fd5..e7dc0ee7 100644 --- a/.github/workflows/publish_python_sdk.yml +++ b/.github/workflows/publish_python_sdk.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python 3.13.3 uses: actions/setup-python@v6 diff --git a/.github/workflows/python_sdk_test.yml b/.github/workflows/python_sdk_test.yml index 279a49ce..6defdf99 100644 --- a/.github/workflows/python_sdk_test.yml +++ b/.github/workflows/python_sdk_test.yml @@ -31,7 +31,7 @@ jobs: path: ~\AppData\Local\pip\Cache steps: - name: Checkout source branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 @@ -39,7 +39,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Check for cached pip environment - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ matrix.path }} key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('demos/python/sdk_wireless_camera_control/poetry.lock') }} @@ -70,7 +70,7 @@ jobs: run: nox -p 3.13 -s format lint docstrings docs - name: Archive test report on failure - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: failure() with: name: test-reports