Skip to content

Commit 6c7d3bc

Browse files
Bump actions/checkout from 5 to 6 in the github-actions group
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8fd3745 commit 6c7d3bc

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/monitor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Python
1616
uses: actions/setup-python@v6

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- run: |
1616
pipx install ruff
1717
ruff check
@@ -22,7 +22,7 @@ jobs:
2222
matrix:
2323
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Set up Python
2727
uses: actions/setup-python@v6
2828
with:
@@ -39,7 +39,7 @@ jobs:
3939
needs: test
4040
if: github.ref == 'refs/heads/master' && github.actor != 'dependabot[bot]' && (github.event_name == 'push' || github.event_name == 'schedule')
4141
steps:
42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
- name: Set up Python
4444
uses: actions/setup-python@v6
4545
with:
@@ -66,7 +66,7 @@ jobs:
6666
needs: update
6767
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
6868
steps:
69-
- uses: actions/checkout@v5
69+
- uses: actions/checkout@v6
7070
with:
7171
fetch-depth: 0
7272
- name: Set up Python

0 commit comments

Comments
 (0)