Skip to content

Commit 5e62683

Browse files
authored
Merge branch 'main' into dependabot/pip/mypy-1.14.1
2 parents c8bcd8f + cb5e057 commit 5e62683

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
26-
- uses: actions/setup-python@v5
26+
- uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ env.python_version}}
2929
- uses: FranzDiebold/github-env-vars-action@v2
@@ -52,7 +52,7 @@ jobs:
5252
# runs-on: ubuntu-latest
5353
# steps:
5454
# - uses: actions/checkout@v4
55-
# - uses: actions/setup-python@v5
55+
# - uses: actions/setup-python@v6
5656
# with:
5757
# python-version: ${{ env.python_version}}
5858
# - name: Determine dependencies
@@ -94,7 +94,7 @@ jobs:
9494
runs-on: ubuntu-latest
9595
steps:
9696
- uses: actions/checkout@v4
97-
- uses: actions/setup-python@v5
97+
- uses: actions/setup-python@v6
9898
with:
9999
python-version: ${{ env.python_version}}
100100
- name: Determine dependencies
@@ -140,7 +140,7 @@ jobs:
140140
name: Check for secrets
141141
runs-on: ubuntu-latest
142142
steps:
143-
- uses: actions/setup-python@v5
143+
- uses: actions/setup-python@v6
144144
with:
145145
python-version: ${{ env.python_version}}
146146
- name: Install tools
@@ -195,7 +195,7 @@ jobs:
195195
steps:
196196
- uses: actions/checkout@v4
197197
- name: Set up Python ${{ matrix.python-version }}
198-
uses: actions/setup-python@v5
198+
uses: actions/setup-python@v6
199199
with:
200200
python-version: ${{ matrix.python-version }}
201201
- name: Install python tools

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
17-
- uses: actions/setup-python@v5
17+
- uses: actions/setup-python@v6
1818
- uses: FranzDiebold/github-env-vars-action@v2
1919
- name: Install CI/CD tools
2020
run: |

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Setup Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: "3.11"
1919
- name: Install pipenv

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v4
20-
- uses: actions/setup-python@v5
20+
- uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ env.python_version }}
2323
- name: Determine dependencies

continuous_delivery_scripts/plugins/golang.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _install_syft_command_list() -> List[str]:
6767

6868

6969
def _install_goreleaser_command_list() -> List[str]:
70-
return ["go", "install", "github.com/goreleaser/goreleaser@latest"]
70+
return ["go", "install", "github.com/goreleaser/goreleaser/v2@latest"]
7171

7272

7373
def _call_golds(output_directory: Path, module: str) -> None:

news/20250904114652.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Dependency upgrade: setup-python-6

news/202509091458.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
:gear: `[go]` install `goreleaser` v2

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ docutils="BSD-3-Clause"
5858
backports-tarfile="MIT"
5959
Markdown="BSD-3-Clause"
6060
id="Apache-2.0"
61-
61+
regex="Apache-2.0"
62+
cffi="MIT"
6263

6364

6465
[AutoVersionConfig]

0 commit comments

Comments
 (0)