Skip to content

Commit cb798ef

Browse files
chore(deps): update github-actions: bump the github-actions-version-updates group across 1 directory with 5 updates
Bumps the github-actions-version-updates group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `4` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.0.0` | `6.1.0` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v6) Updates `astral-sh/setup-uv` from 4 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v4...v7) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `actions/setup-python` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@e797f83...83679a8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: actions/setup-python dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-version-updates ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 48d73ed commit cb798ef

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/bandit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
32+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3333

3434
- name: Bandit Scan
3535
uses: shundor/python-bandit-scan@ab1d87dfccc5a0ffab88be3aaac6ffe35c10d6cd

.github/workflows/pypi-publish-on-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ jobs:
3535
contents: read
3636
steps:
3737
- name: Checkout code
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
persist-credentials: false
4141

4242
- name: Set up uv
43-
uses: astral-sh/setup-uv@v4
43+
uses: astral-sh/setup-uv@v7
4444

4545
- name: Build distribution packages
4646
run: uv build
4747

4848
- name: Upload distribution packages
49-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v5
5050
with:
5151
name: python-package-distributions
5252
path: dist/
@@ -61,13 +61,13 @@ jobs:
6161
id-token: write
6262
steps:
6363
- name: Download distribution packages
64-
uses: actions/download-artifact@v5
64+
uses: actions/download-artifact@v6
6565
with:
6666
name: python-package-distributions
6767
path: dist/
6868

6969
- name: Set up uv
70-
uses: astral-sh/setup-uv@v4
70+
uses: astral-sh/setup-uv@v7
7171

7272
- name: Publish to PyPI
7373
run: uv publish

.github/workflows/python-integ.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
AGENTCORE_RUNTIME_ARN: ${{ secrets.AgentCoreRuntimeArn }}
2929

3030
steps:
31-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
31+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3232
with:
3333
ref: ${{ inputs.ref || github.ref }}
3434

3535
- name: Install uv
36-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
36+
uses: astral-sh/setup-uv@06e4edb239928eb926db9fa84abd11632bf44baa # v7.1.2
3737

3838
- name: Set up Python ${{ matrix.python-version }}
39-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
39+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242

.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030
security-events: write
3131
actions: read
3232
steps:
33-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
33+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3434
with:
3535
ref: ${{ inputs.ref || github.ref }}
3636

3737
- name: Install uv
38-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
38+
uses: astral-sh/setup-uv@06e4edb239928eb926db9fa84abd11632bf44baa # v7.1.2
3939

4040
- name: Set up Python
41-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
41+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
4242
with:
4343
python-version-file: ".python-version"
4444
# cache: uv (not supported)

.github/workflows/test-pypi-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@ jobs:
3333
contents: read
3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737
with:
3838
persist-credentials: false
3939

4040
- name: Set up uv
41-
uses: astral-sh/setup-uv@v4
41+
uses: astral-sh/setup-uv@v7
4242

4343
- name: Build distribution packages
4444
run: uv build
4545

4646
- name: Upload distribution packages
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v5
4848
with:
4949
name: python-package-distributions
5050
path: dist/
@@ -59,13 +59,13 @@ jobs:
5959
id-token: write
6060
steps:
6161
- name: Download distribution packages
62-
uses: actions/download-artifact@v4
62+
uses: actions/download-artifact@v6
6363
with:
6464
name: python-package-distributions
6565
path: dist/
6666

6767
- name: Set up uv
68-
uses: astral-sh/setup-uv@v4
68+
uses: astral-sh/setup-uv@v7
6969

7070
- name: Publish to TestPyPI
7171
run: uv publish --publish-url https://test.pypi.org/legacy/

0 commit comments

Comments
 (0)