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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.11"
cache: "pip"
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Setup Python environment
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.11'
- name: Setup virtual environment
Expand All @@ -36,7 +36,7 @@ jobs:
coverage run --rcfile=.coveragerc -m pytest test/unit/
coverage xml
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: unit-coverage
path: coverage.xml
Expand All @@ -53,7 +53,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Download coverage artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: unit-coverage
- name: Configure AWS credentials (OIDC)
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Setup Python environment
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.11'
- name: Setup virtual environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypiupload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
PYPI_SECRET,pypi-api-token-dropbox-sdk-python
parse-json-secrets: false
- name: Setup Python environment
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.x"
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spec_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- uses: actions/checkout@v7
- name: Setup Python environment
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.11'
- name: Get current time
Expand Down