Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check_for_secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

steps:
- name: Checkout source branch (the PR branch)
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: source

Expand All @@ -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') }}
Expand All @@ -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
Expand All @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kotlin_sdk_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout source branch
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: actions/setup-java@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_python_sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python_sdk_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ 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
with:
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') }}
Expand Down Expand Up @@ -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
Expand Down