Skip to content

Commit 6362681

Browse files
committed
Bump actions versions to latest
1 parent 246bb03 commit 6362681

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

.github/workflows/build-examples.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
- name: 🏗️ Build library
3939
run: yarn build
4040

41-
- name: 📱 Install Expo CLI
42-
run: npm install -g @expo/cli
43-
4441
- name: 🌐 Install Expo dependencies
4542
working-directory: example/expo
4643
run: yarn install --immutable
4744

45+
- name: 📱 Install Expo CLI
46+
run: npm install -g @expo/cli
47+
4848
- name: 🔍 Validate Expo configuration
4949
working-directory: example/expo
5050
run: npx expo-doctor
@@ -86,9 +86,13 @@ jobs:
8686
- name: 🏗️ Build library
8787
run: yarn build
8888

89+
- name: 📱 Install dependencies for ${{ matrix.app }}
90+
working-directory: example/${{ matrix.app }}
91+
run: yarn install --immutable
92+
8993
- name: 🍎 Setup Ruby (iOS only)
9094
if: matrix.platform == 'ios'
91-
uses: ruby/setup-ruby@v1
95+
uses: ruby/setup-ruby@v2
9296
with:
9397
ruby-version: '3.3'
9498
bundler-cache: true
@@ -106,11 +110,7 @@ jobs:
106110

107111
- name: 🤖 Setup Android SDK (Android only)
108112
if: matrix.platform == 'android'
109-
uses: android-actions/setup-android@v3
110-
111-
- name: 📱 Install dependencies for ${{ matrix.app }}
112-
working-directory: example/${{ matrix.app }}
113-
run: yarn install --immutable
113+
uses: android-actions/setup-android@v4
114114

115115
- name: 🍎 Install pods (iOS only)
116116
if: matrix.platform == 'ios'

.github/workflows/code_quality_checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: 🛒 Checkout code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: 🔧 Setup Node.js
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
21-
node-version: 20
21+
node-version: '20'
2222
cache: 'yarn'
2323

2424
- name: 📦 Install dependencies

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
)
1515
steps:
1616
- name: 🛒 Checkout code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
token: ${{ secrets.GH_TOKEN }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313

1414
steps:
1515
- name: 🛒 Checkout code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
token: ${{ secrets.GH_TOKEN }}
2020

21-
- name: 🛠 Setup Node.js
22-
uses: actions/setup-node@v3
21+
- name: 🔧 Setup Node.js
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: 20
24+
node-version: '20'
2525
cache: 'yarn'
2626

2727
- name: 📦 Install dependencies

.github/workflows/unused-code-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414

1515
steps:
1616
- name: 🛒 Checkout code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: 🔧 Setup Node.js
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v4
2121
with:
22-
node-version: 20
22+
node-version: '20'
2323
cache: 'yarn'
2424

2525
- name: 📦 Install dependencies

0 commit comments

Comments
 (0)