Skip to content

Commit 44545e5

Browse files
Bump the actions-deps group across 1 directory with 2 updates
Bumps the actions-deps group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 23586ff commit 44545e5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/prod.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
outputs:
1313
update_commit: ${{ steps.commit_changes.outputs.update_commit }}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
ref: master
1818
fetch-depth: 0
1919
- name: Set up Python 3.12
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: '3.12'
2323
architecture: 'x64'
@@ -50,13 +50,13 @@ jobs:
5050

5151
steps:
5252
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454
with:
5555
# Use "last updated" commit from update job if created
5656
ref: ${{ needs.update.outputs.update_commit }}
5757

5858
- name: Set up Python 3.12
59-
uses: actions/setup-python@v5
59+
uses: actions/setup-python@v6
6060
with:
6161
# Semantic version range syntax or exact version of a Python version
6262
python-version: '3.12'

.github/workflows/test-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111

1212
- name: Set up Python 3.12
13-
uses: actions/setup-python@v5
13+
uses: actions/setup-python@v6
1414
with:
1515
# Semantic version range syntax or exact version of a Python version
1616
python-version: '3.12'

0 commit comments

Comments
 (0)