Skip to content

Commit 343d643

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0c8fa26 commit 343d643

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/pushToPyPiOnRelease.yml

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

1212
#Checkout the current branch
1313
- name: Checkout repo
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
#Install the given version of Python we will test against
1717
- name: Install Required Python Version

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
lint:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
- name: Install Python
1212
uses: actions/setup-python@v5
1313
with:

.github/workflows/testEndToEnd.yml

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

3030
#Checkout the current branch
3131
- name: Checkout repo
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333

3434
#Install the given version of Python we will test against
3535
- name: Install Required Python Version

.github/workflows/test_against_escu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
steps:
2828
# Checkout the current branch of contentctl repo
2929
- name: Checkout repo
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
# Checkout the develop (default) branch of security_content
3333
- name: Checkout repo
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
path: security_content
3737
repository: splunk/security_content

0 commit comments

Comments
 (0)