Skip to content

Commit d941ea9

Browse files
committed
Bump checkout action
1 parent 62f164c commit d941ea9

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

.github/workflows/android-app.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151

5252
- name: Use custom container image if specified
5353
if: ${{ github.event.inputs.override_container_image != '' }}
@@ -89,7 +89,7 @@ jobs:
8989

9090
- name: Checkout repository
9191
if: steps.cache-relay-list.outputs.cache-hit != 'true'
92-
uses: actions/checkout@v3
92+
uses: actions/checkout@v4
9393

9494
- name: Generate
9595
if: steps.cache-relay-list.outputs.cache-hit != 'true'
@@ -135,7 +135,7 @@ jobs:
135135
run: echo "HOME=/root" >> $GITHUB_ENV
136136

137137
- name: Checkout repository
138-
uses: actions/checkout@v3
138+
uses: actions/checkout@v4
139139

140140
- name: Calculate native lib cache hash
141141
id: native-lib-cache-hash
@@ -192,7 +192,7 @@ jobs:
192192
run: echo "HOME=/root" >> $GITHUB_ENV
193193

194194
- name: Checkout repository
195-
uses: actions/checkout@v3
195+
uses: actions/checkout@v4
196196

197197
- uses: actions/download-artifact@v3
198198
with:
@@ -319,7 +319,7 @@ jobs:
319319
run: echo "report_path=/tmp/$UNIQUE_RUN_ID" >> $GITHUB_OUTPUT
320320

321321
- name: Checkout repository
322-
uses: actions/checkout@v3
322+
uses: actions/checkout@v4
323323

324324
- uses: actions/download-artifact@v3
325325
with:
@@ -355,7 +355,7 @@ jobs:
355355
needs: [build-app]
356356
steps:
357357
- name: Checkout repository
358-
uses: actions/checkout@v3
358+
uses: actions/checkout@v4
359359

360360
- uses: actions/download-artifact@v3
361361
with:
@@ -392,7 +392,7 @@ jobs:
392392
arg-spec-file: [mockapi-oss.yml, e2e-play-stagemole.yml]
393393
steps:
394394
- name: Checkout repository
395-
uses: actions/checkout@v3
395+
uses: actions/checkout@v4
396396

397397
- uses: actions/download-artifact@v3
398398
with:

.github/workflows/android-kotlin-format-check.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,5 @@ jobs:
4444
- uses: actions/checkout@v3
4545

4646
- name: Run ktfmt check
47-
run: android/gradlew -p android ktfmtCheck
47+
run: |-
48+
android/gradlew -p android ktfmtCheck

.github/workflows/android-xml-format-check.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ jobs:
3131
- name: Fix HOME path
3232
run: echo "HOME=/root" >> $GITHUB_ENV
3333
- name: Checkout repository
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535
- name: Run tidy
3636
shell: bash
37-
run: |-
38-
git config --global --add safe.directory $(pwd)
39-
android/scripts/tidy.sh formatAndCheckDiff
37+
run: android/scripts/tidy.sh formatAndCheckDiff

0 commit comments

Comments
 (0)