From 59e4ed0021a1f2f0f649c6d082fae10b1c5654b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Sep 2025 14:32:36 -0500 Subject: [PATCH] Bump actions/checkout from 3 to 5 (#353) * Bump actions/checkout from 3 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Update Python version to 3.13.7 in workflow --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Haritha <73516759+HarithaVattikuti@users.noreply.github.com> --- .github/workflows/build-python-packages.yml | 14 +++++++------- .github/workflows/manifest-config-validation.yml | 2 +- .github/workflows/python-versions-runner.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-python-packages.yml b/.github/workflows/build-python-packages.yml index 872af3f..509307f 100644 --- a/.github/workflows/build-python-packages.yml +++ b/.github/workflows/build-python-packages.yml @@ -1,11 +1,11 @@ name: Build Python package -run-name: Generate Python ${{ inputs.VERSION || '3.12.3' }} +run-name: Generate Python ${{ inputs.VERSION || '3.13.7' }} on: workflow_dispatch: inputs: VERSION: description: 'Python version to build and upload' - default: '3.12.3' + default: '3.13.7' required: true PUBLISH_RELEASES: description: 'Whether to publish releases' @@ -30,7 +30,7 @@ on: - 'main' env: - VERSION: ${{ inputs.VERSION || '3.12.3' }} + VERSION: ${{ inputs.VERSION || '3.13.7' }} defaults: run: shell: pwsh @@ -83,10 +83,10 @@ jobs: include: ${{ fromJson(needs.generate_matrix.outputs.matrix) }} runs-on: ${{ matrix.os }} env: - ARTIFACT_NAME: python-${{ inputs.VERSION || '3.12.3' }}-${{ matrix.platform }}-${{ matrix.arch }} + ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }} steps: - name: Check out repository code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: submodules: true @@ -114,10 +114,10 @@ jobs: include: ${{ fromJson(needs.generate_matrix.outputs.matrix) }} runs-on: ${{ matrix.os }} env: - ARTIFACT_NAME: python-${{ inputs.VERSION || '3.12.3' }}-${{ matrix.platform }}-${{ matrix.arch }} + ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }} steps: - name: Check out repository code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: submodules: true diff --git a/.github/workflows/manifest-config-validation.yml b/.github/workflows/manifest-config-validation.yml index 717b6ef..da04cbe 100644 --- a/.github/workflows/manifest-config-validation.yml +++ b/.github/workflows/manifest-config-validation.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: submodules: true diff --git a/.github/workflows/python-versions-runner.yml b/.github/workflows/python-versions-runner.yml index 33721ba..b9f1ead 100644 --- a/.github/workflows/python-versions-runner.yml +++ b/.github/workflows/python-versions-runner.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Trigger python workflow run: |