Skip to content

Commit 93783ae

Browse files
Merge pull request #184 from blacklanternsecurity/dependabot/github_actions/github-actions-76468cb07f
Bump actions/checkout from 5 to 6 in the github-actions group
2 parents 8fd3745 + 6c7d3bc commit 93783ae

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)