Skip to content

Commit e7eccab

Browse files
build(deps): 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] <support@github.com>
1 parent e1ce55a commit e7eccab

14 files changed

Lines changed: 25 additions & 25 deletions

.github/workflows/android-kit-push.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: "Unit Tests Maven"
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- name: "Install JDK 17"
2525
uses: actions/setup-java@v4
2626
with:
@@ -44,13 +44,13 @@ jobs:
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: "Checkout Repository"
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848
with:
4949
repository: ${{ github.event.pull_request.head.repo.full_name }}
5050
path: kit
5151
ref: ${{ inputs.branch_name }}
5252
- name: "Checkout Core"
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v6
5454
with:
5555
repository: mParticle/android-sdk
5656
fetch-depth: 0
@@ -95,7 +95,7 @@ jobs:
9595
runs-on: ubuntu-latest
9696
steps:
9797
- name: "Checkout Repository"
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@v6
9999
with:
100100
repository: ${{ github.event.pull_request.head.repo.full_name }}
101101
ref: ${{ inputs.branch_name }}
@@ -122,13 +122,13 @@ jobs:
122122
runs-on: ubuntu-latest
123123
steps:
124124
- name: "Checkout Repository"
125-
uses: actions/checkout@v4
125+
uses: actions/checkout@v6
126126
with:
127127
repository: ${{ github.event.pull_request.head.repo.full_name }}
128128
path: kit
129129
ref: ${{ inputs.branch_name }}
130130
- name: "Checkout Core"
131-
uses: actions/checkout@v4
131+
uses: actions/checkout@v6
132132
with:
133133
repository: mParticle/android-sdk
134134
fetch-depth: 0
@@ -173,7 +173,7 @@ jobs:
173173
runs-on: ubuntu-latest
174174
steps:
175175
- name: "Checkout Repository"
176-
uses: actions/checkout@v4
176+
uses: actions/checkout@v6
177177
with:
178178
repository: ${{ github.event.pull_request.head.repo.full_name }}
179179
ref: ${{ inputs.branch_name }}
@@ -200,13 +200,13 @@ jobs:
200200
runs-on: ubuntu-latest
201201
steps:
202202
- name: "Checkout Repository"
203-
uses: actions/checkout@v4
203+
uses: actions/checkout@v6
204204
with:
205205
repository: ${{ github.event.pull_request.head.repo.full_name }}
206206
path: kit
207207
ref: ${{ inputs.branch_name }}
208208
- name: "Checkout Core"
209-
uses: actions/checkout@v4
209+
uses: actions/checkout@v6
210210
with:
211211
repository: mParticle/android-sdk
212212
fetch-depth: 0

.github/workflows/android-kit-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
GIT_COMMITTER_EMAIL: developers@mparticle.com
2929
steps:
3030
- name: "Checkout main branch"
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
token: ${{ secrets.MP_INTEGRATIONS_SEMANTIC_RELEASE_BOT }}
3434
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: "Checkout main branch"
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@v6
6464
with:
6565
fetch-depth: 0
6666
repository: ${{ github.repository }}

.github/workflows/daily-cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
image: returntocorp/semgrep
3737
steps:
3838
- name: "Checkout repository"
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040

4141
- name: "Run Semgrep"
4242
run: "semgrep --config=auto ."

.github/workflows/data-plan-fetch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636

3737
- name: Use Node.js
3838
uses: actions/setup-node@v1

.github/workflows/dependabot-rebase-development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: "Checkout development branch"
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
token: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
2020
ref: development

.github/workflows/dependabot-rebase-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: "Checkout main branch"
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
ref: main
2020
- name: "Rebase chore/dependabot branch"

.github/workflows/dependabot-save-pr-number.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 PR branch"
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
with:
1515
submodules: recursive
1616
fetch-depth: 0

.github/workflows/issue-comment-to-jira.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
1717
steps:
1818
- name: "Checkout Branch"
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: "Login"
2222
uses: atlassian/gajira-login@master

.github/workflows/sdk-release-repo-branch-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Git checkout
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1212

1313
- name: Branch Check
1414
run: |

.github/workflows/security-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
github.actor != 'dependabot[bot]'
1717
steps:
1818
- name: "Checkout this branch"
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: "Checkout base branch"
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
ref: ${{ github.event.inputs.base_branch }}
2525

@@ -54,7 +54,7 @@ jobs:
5454
( contains(github.event.repository.name, 'android') || contains(github.event.repository.name, 'apple'))
5555
steps:
5656
- name: "Checkout repository"
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v6
5858

5959
- name: "Run mobsfscan"
6060
uses: MobSF/mobsfscan@main

0 commit comments

Comments
 (0)