From 81f5917c37ca072a8092c4a30dbfb06787d0efa3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 16:05:29 +0000 Subject: [PATCH] build(deps): bump actions/setup-python from 5 to 6 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/bandit.yml | 2 +- .github/workflows/build_container.yml | 2 +- .github/workflows/mypy.yml | 2 +- .github/workflows/pylint.yml | 2 +- .github/workflows/pytest.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bandit.yml b/.github/workflows/bandit.yml index d1e2eda..2d0e20f 100644 --- a/.github/workflows/bandit.yml +++ b/.github/workflows/bandit.yml @@ -15,7 +15,7 @@ jobs: with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Set up Python 3.12 - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' - name: Run bandit diff --git a/.github/workflows/build_container.yml b/.github/workflows/build_container.yml index 2f4db02..95952ba 100644 --- a/.github/workflows/build_container.yml +++ b/.github/workflows/build_container.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v5 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' - name: Set up QEMU diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index ebb3f1d..ba59804 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -15,7 +15,7 @@ jobs: with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Set up Python 3.12 - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' - name: Running mypy diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index dbc34fd..e10aa6e 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -15,7 +15,7 @@ jobs: with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Set up Python 3.12 - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' - name: Running pylint diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 395f265..9cd9e1f 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -15,7 +15,7 @@ jobs: with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Set up Python 3.12 - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' - name: Running pytest