From b84e55beb5a294979ab878925e9e64530bcc0b40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Sep 2025 23:02:17 +0000 Subject: [PATCH] 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/samples-postman.yaml | 2 +- .github/workflows/samples-python-client-echo-api.yaml | 2 +- .github/workflows/samples-python-fastapi-server.yaml | 2 +- .github/workflows/samples-python-petstore.yaml | 4 ++-- .../workflows/samples-python-pydantic-v1-client-echo-api.yaml | 2 +- .github/workflows/samples-python-pydantic-v1-petstore.yaml | 2 +- .github/workflows/samples-python-server.yaml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/samples-postman.yaml b/.github/workflows/samples-postman.yaml index c8fa8e654246..5969faf3bc90 100644 --- a/.github/workflows/samples-postman.yaml +++ b/.github/workflows/samples-postman.yaml @@ -20,7 +20,7 @@ jobs: - "3.12" steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install diff --git a/.github/workflows/samples-python-client-echo-api.yaml b/.github/workflows/samples-python-client-echo-api.yaml index 4c3fc0be910b..9dd90b1fea2f 100644 --- a/.github/workflows/samples-python-client-echo-api.yaml +++ b/.github/workflows/samples-python-client-echo-api.yaml @@ -25,7 +25,7 @@ jobs: - "3.13" steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Setup node.js diff --git a/.github/workflows/samples-python-fastapi-server.yaml b/.github/workflows/samples-python-fastapi-server.yaml index 8dcb19b84bd8..d871693684f8 100644 --- a/.github/workflows/samples-python-fastapi-server.yaml +++ b/.github/workflows/samples-python-fastapi-server.yaml @@ -19,7 +19,7 @@ jobs: - samples/server/petstore/python-fastapi/ steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.9' - name: Install dependencies diff --git a/.github/workflows/samples-python-petstore.yaml b/.github/workflows/samples-python-petstore.yaml index 2c18fdd8b093..658b506ff0e6 100644 --- a/.github/workflows/samples-python-petstore.yaml +++ b/.github/workflows/samples-python-petstore.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: "3.13" - name: Install validator @@ -45,7 +45,7 @@ jobs: SWAGGER_BASE_PATH: /v2 steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 id: py with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/samples-python-pydantic-v1-client-echo-api.yaml b/.github/workflows/samples-python-pydantic-v1-client-echo-api.yaml index e395b646da8b..0766b2959c67 100644 --- a/.github/workflows/samples-python-pydantic-v1-client-echo-api.yaml +++ b/.github/workflows/samples-python-pydantic-v1-client-echo-api.yaml @@ -24,7 +24,7 @@ jobs: - "3.12" steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Setup node.js diff --git a/.github/workflows/samples-python-pydantic-v1-petstore.yaml b/.github/workflows/samples-python-pydantic-v1-petstore.yaml index 85b0fb342efc..4e684873a994 100644 --- a/.github/workflows/samples-python-pydantic-v1-petstore.yaml +++ b/.github/workflows/samples-python-pydantic-v1-petstore.yaml @@ -32,7 +32,7 @@ jobs: SWAGGER_BASE_PATH: /v2 steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 id: py with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/samples-python-server.yaml b/.github/workflows/samples-python-server.yaml index c71f951b4900..92cd4e5b6b33 100644 --- a/.github/workflows/samples-python-server.yaml +++ b/.github/workflows/samples-python-server.yaml @@ -19,7 +19,7 @@ jobs: - samples/server/petstore/python-aiohttp-srclayout/ steps: - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.9' - name: Test