Skip to content

Commit 8a4da6a

Browse files
authored
ci: update GitHub actions (#14129)
1 parent 1b33c19 commit 8a4da6a

File tree

9 files changed

+45
-45
lines changed

9 files changed

+45
-45
lines changed

.github/actions/build-android/action.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ runs:
2020
shell: bash
2121

2222
- name: Setup Node.js
23-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ inputs.node-version }}
2626
cache: 'npm'
2727

2828
- name: Setup Java
29-
uses: actions/setup-java@v3
29+
uses: actions/setup-java@v4
3030
with:
3131
distribution: 'adopt'
3232
java-version: ${{ inputs.java-version }}
@@ -36,7 +36,7 @@ runs:
3636
shell: bash
3737

3838
- name: Cache Gradle packages
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: |
4242
~/.gradle/caches
@@ -58,7 +58,7 @@ runs:
5858
${{ runner.os }}-ccache-
5959
6060
- name: Cache V8
61-
uses: actions/cache@v3
61+
uses: actions/cache@v4
6262
with:
6363
path: dist/android/libv8
6464
key: libv8-${{ hashFiles('dist/android/libv8/**') }}
@@ -84,7 +84,7 @@ runs:
8484
dist/tmp/common
8585
shell: bash
8686

87-
- uses: actions/upload-artifact@v3
87+
- uses: actions/upload-artifact@v4
8888
with:
8989
name: android-build
9090
retention-days: 1

.github/actions/build-ios/action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ inputs:
99
runs:
1010
using: composite
1111
steps:
12-
- name: Use Node.js 16.x
13-
uses: actions/setup-node@v3
12+
- name: Use Node.js
13+
uses: actions/setup-node@v4
1414
with:
15-
node-version: '16.x'
15+
node-version: ${{ inputs.node-version }}
1616
cache: 'npm'
1717

1818
- name: Install dependencies
@@ -34,7 +34,7 @@ runs:
3434
iphone/TitaniumKit/build/TitaniumKit.xcframework
3535
shell: bash
3636

37-
- uses: actions/upload-artifact@v3
37+
- uses: actions/upload-artifact@v4
3838
with:
3939
name: ios-build
4040
retention-days: 1

.github/actions/package/action.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ inputs:
1515
runs:
1616
using: composite
1717
steps:
18-
- name: Use Node.js 16.x
19-
uses: actions/setup-node@v3
18+
- name: Use Node.js
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ inputs.node-version }}
2222
cache: 'npm'
2323

2424
- name: Use JDK 11
25-
uses: actions/setup-java@v3
25+
uses: actions/setup-java@v4
2626
with:
2727
distribution: 'adopt'
2828
java-version: ${{ inputs.java-version }}
@@ -32,7 +32,7 @@ runs:
3232
shell: bash
3333

3434
- name: Cache Gradle packages
35-
uses: actions/cache@v3
35+
uses: actions/cache@v4
3636
with:
3737
path: |
3838
~/.gradle/caches
@@ -41,15 +41,15 @@ runs:
4141
restore-keys: |
4242
${{ runner.os }}-gradle-
4343
44-
- uses: actions/download-artifact@v3
44+
- uses: actions/download-artifact@v4
4545
with:
4646
name: android-build
4747

4848
- name: Extract Android build output
4949
run: tar -xzvf android-build.tar.gz
5050
shell: bash
5151

52-
- uses: actions/download-artifact@v3
52+
- uses: actions/download-artifact@v4
5353
with:
5454
name: ios-build
5555

@@ -58,7 +58,7 @@ runs:
5858
shell: bash
5959

6060
- name: Cache Native Modules
61-
uses: actions/cache@v3
61+
uses: actions/cache@v4
6262
with:
6363
path: ${{ env.SDK_BUILD_CACHE_DIR }}
6464
key: native-modules-${{ github.sha }}
@@ -70,21 +70,21 @@ runs:
7070
shell: bash
7171

7272
- name: Archive OSX artifact
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: mobilesdk-${{ inputs.vtag }}-osx
7676
path: |
7777
dist/mobilesdk-*-osx.zip
7878
7979
- name: Archive win32 artifact
80-
uses: actions/upload-artifact@v3
80+
uses: actions/upload-artifact@v4
8181
with:
8282
name: mobilesdk-${{ inputs.vtag }}-win32
8383
path: |
8484
dist/mobilesdk-*-win32.zip
8585
8686
- name: Archive Linux artifact
87-
uses: actions/upload-artifact@v3
87+
uses: actions/upload-artifact@v4
8888
with:
8989
name: mobilesdk-${{ inputs.vtag }}-linux
9090
path: |
@@ -98,7 +98,7 @@ runs:
9898
rm -f ~/.gradle/caches/modules-2/gc.properties
9999
shell: bash
100100

101-
- uses: geekyeggo/delete-artifact@v2
101+
- uses: geekyeggo/delete-artifact@v5
102102
with:
103103
name: |
104104
android-build

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
USE_CCACHE: 1
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121
- name: Android build
@@ -33,7 +33,7 @@ jobs:
3333
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
with:
3838
fetch-depth: 0
3939
- name: iOS build
@@ -46,12 +46,12 @@ jobs:
4646
name: JavaScript
4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050
with:
5151
fetch-depth: 0
5252

5353
- name: Use Node.js 16.x
54-
uses: actions/setup-node@v3
54+
uses: actions/setup-node@v4
5555
with:
5656
node-version: '16.x'
5757
cache: 'npm'
@@ -71,7 +71,7 @@ jobs:
7171
needs: [android, ios, js]
7272
steps:
7373
- name: Checkout repository
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7575
with:
7676
fetch-depth: 0
7777
- name: Create version tag

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
name: Docs
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- name: Use Node.js 16.x
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: '16.x'
2323
cache: 'npm'

.github/workflows/regen-builds.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Repository Dispatch
1717
if: github.event.workflow_run.conclusion == 'success'
18-
uses: peter-evans/repository-dispatch@v2
18+
uses: peter-evans/repository-dispatch@v3
1919
with:
2020
event-type: regen-builds
2121
repository: tidev/downloads-www

.github/workflows/regen-docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020

2121
- name: Setup node
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: '16'
2525
registry-url: 'https://registry.npmjs.org'
@@ -32,7 +32,7 @@ jobs:
3232
name: Lint
3333

3434
- name: Repository Dispatch
35-
uses: peter-evans/repository-dispatch@v2
35+
uses: peter-evans/repository-dispatch@v3
3636
with:
3737
event-type: regen-api-docs
3838
token: ${{ secrets.REGEN_DOCS_GITHUB_TOKEN }}

.github/workflows/release.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
vtag: ${{ steps.vtag.outputs.vtag }}
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535
with:
3636
fetch-depth: 0
3737
ref: ${{ github.event.inputs.branch }}
@@ -43,7 +43,7 @@ jobs:
4343
echo "vtag=${VTAG}" >> $GITHUB_ENV
4444
echo "vtag=${VTAG}" >> $GITHUB_OUTPUT
4545
- name: Validate version
46-
uses: actions/github-script@v6
46+
uses: actions/github-script@v7
4747
env:
4848
vtag: ${{ env.vtag }}
4949
with:
@@ -70,7 +70,7 @@ jobs:
7070
USE_CCACHE: 1
7171
steps:
7272
- name: Checkout repository
73-
uses: actions/checkout@v3
73+
uses: actions/checkout@v4
7474
with:
7575
fetch-depth: 0
7676
ref: ${{ github.event.inputs.branch }}
@@ -90,7 +90,7 @@ jobs:
9090
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
9191
steps:
9292
- name: Checkout repository
93-
uses: actions/checkout@v3
93+
uses: actions/checkout@v4
9494
with:
9595
fetch-depth: 0
9696
ref: ${{ github.event.inputs.branch }}
@@ -109,7 +109,7 @@ jobs:
109109
needs: [validate, android, ios]
110110
steps:
111111
- name: Checkout repository
112-
uses: actions/checkout@v3
112+
uses: actions/checkout@v4
113113
with:
114114
fetch-depth: 0
115115
ref: ${{ github.event.inputs.branch }}
@@ -129,21 +129,21 @@ jobs:
129129
vtag: ${{ needs.validate.outputs.vtag }}
130130
steps:
131131
- name: Checkout repository
132-
uses: actions/checkout@v3
132+
uses: actions/checkout@v4
133133
with:
134134
fetch-depth: 0
135135
ref: ${{ github.event.inputs.branch }}
136136
- run: echo ${{ env.vtag }}
137137
- name: Download Linux artifact
138-
uses: actions/download-artifact@v3
138+
uses: actions/download-artifact@v4
139139
with:
140140
name: mobilesdk-${{ env.vtag }}-linux
141141
- name: Download MacOS artifact
142-
uses: actions/download-artifact@v3
142+
uses: actions/download-artifact@v4
143143
with:
144144
name: mobilesdk-${{ env.vtag }}-osx
145145
- name: Download Windows artifact
146-
uses: actions/download-artifact@v3
146+
uses: actions/download-artifact@v4
147147
with:
148148
name: mobilesdk-${{ env.vtag }}-win32
149149
- name: Create and push tag
@@ -155,14 +155,14 @@ jobs:
155155
git push origin "${TAG_VERSION}"
156156
echo "clean-tag=${TAG_VERSION}" >> $GITHUB_ENV
157157
- name: Upload SDK zips (GA)
158-
uses: softprops/action-gh-release@v1
158+
uses: softprops/action-gh-release@v2
159159
if: ${{ github.event.inputs.release-type == 'GA' }}
160160
with:
161161
files: mobilesdk-${{ env.vtag }}-*
162162
tag_name: ${{ env.clean-tag }}
163163
name: ${{ env.vtag }}
164164
- name: Upload SDK zips (non-GA)
165-
uses: softprops/action-gh-release@v1
165+
uses: softprops/action-gh-release@v2
166166
if: ${{ github.event.inputs.release-type != 'GA' }}
167167
with:
168168
files: mobilesdk-${{ env.vtag }}-*
@@ -178,7 +178,7 @@ jobs:
178178
git commit -m "chore(release): bump version"
179179
git push
180180
- name: Regen Builds
181-
uses: peter-evans/repository-dispatch@v2
181+
uses: peter-evans/repository-dispatch@v3
182182
with:
183183
event-type: regen-builds
184184
repository: tidev/downloads-www

.github/workflows/sponsors.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Update Sponsors
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616
- name: Update Sponsors in README.md
@@ -20,4 +20,4 @@ jobs:
2020
token: ${{ secrets.SPONSORS_README_TOKEN }}
2121
file: 'README.md'
2222
- name: Commit changes
23-
uses: stefanzweifel/git-auto-commit-action@v4
23+
uses: stefanzweifel/git-auto-commit-action@v5

0 commit comments

Comments
 (0)