Skip to content

Commit 035bc3f

Browse files
authored
Merge branch 'main' into feat/add-trunk-api-key-rule
2 parents 5b6598c + a0b2442 commit 035bc3f

4 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/cross-platform-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: "Checkout Cross Platform Tests Repo"
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
with:
1515
repository: mParticle/crossplatform-sdk-tests
1616

1717
- name: "Checkout Android SDK Branch"
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
repository: ${{github.event.pull_request.head.repo.full_name}}
2121
ref: ${{github.head_ref}}

.github/workflows/daily.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
GIT_COMMITTER_EMAIL: developers@mparticle.com
4646
steps:
4747
- name: "Clone branch"
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
with:
5050
token: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
5151
repository: mparticle/mparticle-android-sdk
@@ -77,7 +77,7 @@ jobs:
7777
# needs: create-regression-branch
7878
# steps:
7979
# - name: "Checkout future release branch"
80-
# uses: actions/checkout@v5
80+
# uses: actions/checkout@v6
8181
# with:
8282
# repository: mparticle/mparticle-android-sdk
8383
# ref: regression/${{ github.run_number }}
@@ -110,7 +110,7 @@ jobs:
110110
# needs: create-regression-branch
111111
# steps:
112112
# - name: "Checkout Branch"
113-
# uses: actions/checkout@v5
113+
# uses: actions/checkout@v6
114114
# with:
115115
# repository: mparticle/mparticle-android-sdk
116116
# ref: regression/${{ github.run_number }}
@@ -200,7 +200,7 @@ jobs:
200200
needs: create-regression-branch
201201
steps:
202202
- name: "Checkout future release branch"
203-
uses: actions/checkout@v5
203+
uses: actions/checkout@v6
204204
with:
205205
repository: mparticle/mparticle-android-sdk
206206
ref: regression/${{ github.run_number }}
@@ -229,7 +229,7 @@ jobs:
229229
needs: create-regression-branch
230230
steps:
231231
- name: "Checkout Branch"
232-
uses: actions/checkout@v5
232+
uses: actions/checkout@v6
233233
with:
234234
ref: regression/${{ github.run_number }}
235235
submodules: recursive
@@ -265,7 +265,7 @@ jobs:
265265
needs: create-regression-branch
266266
steps:
267267
- name: "Checkout Branch"
268-
uses: actions/checkout@v5
268+
uses: actions/checkout@v6
269269
with:
270270
ref: regression/${{ github.run_number }}
271271
submodules: recursive
@@ -305,7 +305,7 @@ jobs:
305305
GIT_COMMITTER_EMAIL: developers@mparticle.com
306306
steps:
307307
- name: "Checkout future release branch"
308-
uses: actions/checkout@v5
308+
uses: actions/checkout@v6
309309
with:
310310
repository: mparticle/mparticle-android-sdk
311311
ref: regression/${{ github.run_number }}
@@ -333,7 +333,7 @@ jobs:
333333
GIT_COMMITTER_EMAIL: developers@mparticle.com
334334
steps:
335335
- name: "Checkout public main branch"
336-
uses: actions/checkout@v5
336+
uses: actions/checkout@v6
337337
with:
338338
fetch-depth: 0
339339
ref: main
@@ -364,7 +364,7 @@ jobs:
364364
GIT_COMMITTER_EMAIL: developers@mparticle.com
365365
steps:
366366
- name: "Checkout repo"
367-
uses: actions/checkout@v5
367+
uses: actions/checkout@v6
368368
with:
369369
token: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
370370
fetch-depth: 0

.github/workflows/pull-request.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: "Checkout Branch"
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
- name: "Install JDK 17"
4646
uses: actions/setup-java@v4
4747
with:
@@ -102,7 +102,7 @@ jobs:
102102
runs-on: ubuntu-latest
103103
steps:
104104
- name: "Checkout Branch"
105-
uses: actions/checkout@v5
105+
uses: actions/checkout@v6
106106
- name: "Install JDK 17"
107107
uses: actions/setup-java@v4
108108
with:
@@ -162,7 +162,7 @@ jobs:
162162
runs-on: ubuntu-latest
163163
steps:
164164
- name: "Checkout Branch"
165-
uses: actions/checkout@v5
165+
uses: actions/checkout@v6
166166
- name: "Install JDK 17"
167167
uses: actions/setup-java@v4
168168
with:
@@ -186,7 +186,7 @@ jobs:
186186
runs-on: macos-latest
187187
steps:
188188
- name: "Checkout Branch"
189-
uses: actions/checkout@v5
189+
uses: actions/checkout@v6
190190
with:
191191
submodules: recursive
192192
- name: "Install JDK 17"
@@ -209,7 +209,7 @@ jobs:
209209
runs-on: macos-latest
210210
steps:
211211
- name: "Checkout Branch"
212-
uses: actions/checkout@v5
212+
uses: actions/checkout@v6
213213
with:
214214
submodules: recursive
215215
- name: "Install JDK 17"
@@ -238,7 +238,7 @@ jobs:
238238
if: github.event_name == 'pull_request'
239239
steps:
240240
- name: "Checkout Branch"
241-
uses: actions/checkout@v5
241+
uses: actions/checkout@v6
242242
with:
243243
submodules: recursive
244244
fetch-depth: 0

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
GIT_COMMITTER_EMAIL: developers@mparticle.com
3333
steps:
3434
- name: Checkout main branch
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
token: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
3838
repository: mparticle/mparticle-android-sdk
@@ -78,7 +78,7 @@ jobs:
7878
GIT_COMMITTER_EMAIL: developers@mparticle.com
7979
steps:
8080
- name: "Checkout public main branch"
81-
uses: actions/checkout@v5
81+
uses: actions/checkout@v6
8282
with:
8383
token: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
8484
fetch-depth: 0
@@ -131,7 +131,7 @@ jobs:
131131
mavenSigningKeyPassword: ${{ secrets.MAVEN_CENTRAL_SIGNING_KEY_PASSWORD }}
132132
steps:
133133
- name: "Checkout release branch"
134-
uses: actions/checkout@v5
134+
uses: actions/checkout@v6
135135
with:
136136
repository: mparticle/mparticle-android-sdk
137137
ref: release/${{ github.run_number }}
@@ -170,7 +170,7 @@ jobs:
170170
runs-on: ubuntu-latest
171171
steps:
172172
- name: "Checkout main branch"
173-
uses: actions/checkout@v5
173+
uses: actions/checkout@v6
174174
with:
175175
fetch-depth: 0
176176
repository: ${{ github.repository }}

0 commit comments

Comments
 (0)