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
6 changes: 3 additions & 3 deletions .github/workflows/build-and-unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
group: build-${{ matrix.python-version }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand All @@ -50,7 +50,7 @@ jobs:
group: tests-${{ matrix.python-version }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand All @@ -67,7 +67,7 @@ jobs:
group: coverage-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-examples-grpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout astarte-device-sdk-python
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: astarte-device-sdk-python
- name: Checkout astarte-message-hub
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: astarte-platform/astarte-message-hub
path: astarte-message-hub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-examples-mqtt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cancel-in-progress: true
name: Checks
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install dependencies
run: |
python3 --version
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/doc-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout the source
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
path: astarte-device-sdk-python
# Checkout the docs repository
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: astarte-platform/docs
ssh-key: ${{ secrets.DOCS_DEPLOY_KEY }}
Expand Down Expand Up @@ -74,12 +74,12 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout the source
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
path: astarte-device-sdk-python
fetch-depth: 0
# Checkout the sdk-doc repository
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: astarte-platform/sdk-doc
ssh-key: ${{ secrets.SDK_DOC_DEPLOY_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests-grpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout astarte-device-sdk-python
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: astarte-device-sdk-python
- name: Checkout astarte-message-hub
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: astarte-platform/astarte-message-hub
path: astarte-message-hub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests-mqtt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reuse-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v5
2 changes: 1 addition & 1 deletion .github/workflows/upload-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# Run only if originated from a PR
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.workflow_run.head_sha }}
- name: Download coverage artifact
Expand Down
Loading