Skip to content

Commit 78257f0

Browse files
Bump actions/setup-python from 5 to 6 in the all-dependencies group (#394)
* Bump actions/setup-python from 5 to 6 in the all-dependencies group Bumps the all-dependencies group with 1 update: [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Add missing field --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mathieu Leplatre <[email protected]>
1 parent 29d95f8 commit 78257f0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v5
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: "3.x"
2020

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
steps:
77
- uses: actions/checkout@v5
88

9-
- uses: actions/setup-python@v5
9+
- uses: actions/setup-python@v6
1010

1111
- name: Run linting and formatting checks
1212
run: make lint
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v5
2424

2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
cache: pip

tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1437,7 +1437,7 @@ def test_download_attachment(client_setup: Client, mocker: MockerFixture, delete
14371437
with pytest.raises(ValueError):
14381438
client.download_attachment({})
14391439

1440-
record = {"attachment": {"location": "file.bin", "filename": "local.bin"}}
1440+
record = {"attachment": {"location": "file.bin", "size": 42, "filename": "local.bin"}}
14411441

14421442
path = client.download_attachment(record)
14431443
assert path == "local.bin"

0 commit comments

Comments
 (0)