Skip to content

Commit 984e650

Browse files
Bump actions/checkout from 5 to 6 (#3804)
Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b53280a commit 984e650

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/appinspect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- name: Check out repository (PR)
1010
if: ${{ github.event_name == 'pull_request' }}
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v6
1212
with:
1313
ref: refs/pull/${{ github.event.pull_request.number }}/merge
1414

.github/workflows/build.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: Check out the repository code
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

1515
- uses: actions/setup-python@v6
1616
with:

.github/workflows/datasource-dependabot.yml

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

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
ref: 'develop'
1717
token: ${{ secrets.DATA_SOURCES_DEPENDABOT }}

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
pull-requests: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
with:
1414
repository: "splunk/security_content"
1515
- uses: actions/labeler@v6

.github/workflows/unit-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
#For fork PRs, always check out security_content and the PR target in security content!
1111
- name: Check out the repository code
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
repository: 'splunk/security_content' #this should be the TARGET repo of the PR. we hardcode it for now
1515
ref: ${{ github.base_ref }}

0 commit comments

Comments
 (0)