Skip to content

Commit 59e4ed0

Browse files
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](actions/checkout@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] <support@github.com> * Update Python version to 3.13.7 in workflow --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Haritha <73516759+HarithaVattikuti@users.noreply.github.com>
1 parent 205209d commit 59e4ed0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/build-python-packages.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Build Python package
2-
run-name: Generate Python ${{ inputs.VERSION || '3.12.3' }}
2+
run-name: Generate Python ${{ inputs.VERSION || '3.13.7' }}
33
on:
44
workflow_dispatch:
55
inputs:
66
VERSION:
77
description: 'Python version to build and upload'
8-
default: '3.12.3'
8+
default: '3.13.7'
99
required: true
1010
PUBLISH_RELEASES:
1111
description: 'Whether to publish releases'
@@ -30,7 +30,7 @@ on:
3030
- 'main'
3131

3232
env:
33-
VERSION: ${{ inputs.VERSION || '3.12.3' }}
33+
VERSION: ${{ inputs.VERSION || '3.13.7' }}
3434
defaults:
3535
run:
3636
shell: pwsh
@@ -83,10 +83,10 @@ jobs:
8383
include: ${{ fromJson(needs.generate_matrix.outputs.matrix) }}
8484
runs-on: ${{ matrix.os }}
8585
env:
86-
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.12.3' }}-${{ matrix.platform }}-${{ matrix.arch }}
86+
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
8787
steps:
8888
- name: Check out repository code
89-
uses: actions/checkout@v4
89+
uses: actions/checkout@v5
9090
with:
9191
submodules: true
9292

@@ -114,10 +114,10 @@ jobs:
114114
include: ${{ fromJson(needs.generate_matrix.outputs.matrix) }}
115115
runs-on: ${{ matrix.os }}
116116
env:
117-
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.12.3' }}-${{ matrix.platform }}-${{ matrix.arch }}
117+
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.13.7' }}-${{ matrix.platform }}-${{ matrix.arch }}
118118
steps:
119119
- name: Check out repository code
120-
uses: actions/checkout@v4
120+
uses: actions/checkout@v5
121121
with:
122122
submodules: true
123123

.github/workflows/manifest-config-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
submodules: true
1717

.github/workflows/python-versions-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Check out repository code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v5
2525

2626
- name: Trigger python workflow
2727
run: |

0 commit comments

Comments
 (0)