Skip to content

Commit 3689fa9

Browse files
build(deps): bump actions/checkout from 3 to 4 (#78)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '4' 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 1ec23e1 commit 3689fa9

12 files changed

Lines changed: 23 additions & 23 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@v3
23+
- uses: actions/checkout@v4
2424
- name: "Install JDK 17"
2525
uses: actions/setup-java@v3
2626
with:
@@ -45,13 +45,13 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: "Checkout Repository"
48-
uses: actions/checkout@v3
48+
uses: actions/checkout@v4
4949
with:
5050
repository: ${{ github.event.pull_request.head.repo.full_name }}
5151
path: kit
5252
ref: ${{ inputs.branch_name }}
5353
- name: "Checkout Core"
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555
with:
5656
repository: mParticle/android-sdk
5757
fetch-depth: 0
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: ubuntu-latest
9898
steps:
9999
- name: "Checkout Repository"
100-
uses: actions/checkout@v3
100+
uses: actions/checkout@v4
101101
with:
102102
repository: ${{ github.event.pull_request.head.repo.full_name }}
103103
ref: ${{ inputs.branch_name }}
@@ -125,13 +125,13 @@ jobs:
125125
runs-on: ubuntu-latest
126126
steps:
127127
- name: "Checkout Repository"
128-
uses: actions/checkout@v3
128+
uses: actions/checkout@v4
129129
with:
130130
repository: ${{ github.event.pull_request.head.repo.full_name }}
131131
path: kit
132132
ref: ${{ inputs.branch_name }}
133133
- name: "Checkout Core"
134-
uses: actions/checkout@v3
134+
uses: actions/checkout@v4
135135
with:
136136
repository: mParticle/android-sdk
137137
fetch-depth: 0
@@ -177,7 +177,7 @@ jobs:
177177
runs-on: ubuntu-latest
178178
steps:
179179
- name: "Checkout Repository"
180-
uses: actions/checkout@v3
180+
uses: actions/checkout@v4
181181
with:
182182
repository: ${{ github.event.pull_request.head.repo.full_name }}
183183
ref: ${{ inputs.branch_name }}
@@ -205,13 +205,13 @@ jobs:
205205
runs-on: ubuntu-latest
206206
steps:
207207
- name: "Checkout Repository"
208-
uses: actions/checkout@v3
208+
uses: actions/checkout@v4
209209
with:
210210
repository: ${{ github.event.pull_request.head.repo.full_name }}
211211
path: kit
212212
ref: ${{ inputs.branch_name }}
213213
- name: "Checkout Core"
214-
uses: actions/checkout@v3
214+
uses: actions/checkout@v4
215215
with:
216216
repository: mParticle/android-sdk
217217
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 development branch"
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
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@v3
63+
uses: actions/checkout@v4
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@v3
39+
uses: actions/checkout@v4
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@v3
35+
uses: actions/checkout@v4
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@v3
17+
uses: actions/checkout@v4
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@v3
17+
uses: actions/checkout@v4
1818
with:
1919
ref: main
2020
- name: "Rebase chore/dependabot branch"

.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@v3
19+
uses: actions/checkout@v4
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@v3
11+
uses: actions/checkout@v4
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@v3
19+
uses: actions/checkout@v4
2020

2121
- name: "Checkout base branch"
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
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@v3
57+
uses: actions/checkout@v4
5858

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

.github/workflows/security-hardcoded-secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
tar zxf "$path" -C "/tmp/bin"
3434
3535
- name: Checkout code
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
with:
3838
repository: ${{ github.event.pull_request.head.repo.full_name }}
3939
fetch-depth: 0

0 commit comments

Comments
 (0)