Skip to content

Commit f4e6900

Browse files
committed
test(deps): bump all actions dependencies to current
1 parent 97a4ea5 commit f4e6900

File tree

8 files changed

+39
-39
lines changed

8 files changed

+39
-39
lines changed

.github/workflows/create_test_patches.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ jobs:
2828
with:
2929
all_but_latest: true
3030

31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232

3333
# Future ideas:
3434
# - make into an action, parameterize directories to pack, and package names to install
3535
# - name patches w/PR as "semver prerelease" and SHA as "semver build info". Needs patch-package enhancement.
3636

37-
- uses: actions/setup-node@v2
37+
- uses: actions/setup-node@v3
3838
with:
3939
node-version: 16
4040

4141
- name: Get yarn cache directory path
4242
id: yarn-cache-dir-path
4343
run: echo "::set-output name=dir::$(yarn cache dir)"
4444

45-
- uses: actions/cache@v2
45+
- uses: actions/cache@v3
4646
name: Yarn Cache
4747
id: yarn-cache
4848
with:
@@ -93,7 +93,7 @@ jobs:
9393
shell: bash
9494

9595
- name: Upload Test Patches
96-
uses: actions/upload-artifact@v2
96+
uses: actions/upload-artifact@v3
9797
with:
9898
name: patches
9999
path: ~/template/patches/

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- uses: styfle/[email protected]
1818
with:
1919
all_but_latest: true
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
with:
2222
fetch-depth: 1
23-
- uses: actions/setup-node@v2
23+
- uses: actions/setup-node@v3
2424
with:
2525
node-version: 16
2626
- name: Get yarn cache directory path

.github/workflows/linting.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ jobs:
1818
- uses: styfle/[email protected]
1919
with:
2020
all_but_latest: true
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
with:
2323
fetch-depth: 1
24-
- uses: actions/setup-node@v2
24+
- uses: actions/setup-node@v3
2525
with:
2626
node-version: 16
2727
- name: Configure JDK 1.11
28-
uses: actions/setup-java@v2
28+
uses: actions/setup-java@v3
2929
with:
3030
distribution: 'temurin'
3131
java-version: '11'
3232
- name: Get yarn cache directory path
3333
id: yarn-cache-dir-path
3434
run: echo "::set-output name=dir::$(yarn cache dir)"
35-
- uses: actions/cache@v2
35+
- uses: actions/cache@v3
3636
name: Yarn Cache
3737
id: yarn-cache
3838
with:
@@ -62,16 +62,16 @@ jobs:
6262
- uses: styfle/[email protected]
6363
with:
6464
all_but_latest: true
65-
- uses: actions/checkout@v2
65+
- uses: actions/checkout@v3
6666
with:
6767
fetch-depth: 1
68-
- uses: actions/setup-node@v2
68+
- uses: actions/setup-node@v3
6969
with:
7070
node-version: 16
7171
- name: Get yarn cache directory path
7272
id: yarn-cache-dir-path
7373
run: echo "::set-output name=dir::$(yarn cache dir)"
74-
- uses: actions/cache@v2
74+
- uses: actions/cache@v3
7575
name: Yarn Cache
7676
id: yarn-cache
7777
with:
@@ -96,16 +96,16 @@ jobs:
9696
- uses: styfle/[email protected]
9797
with:
9898
all_but_latest: true
99-
- uses: actions/checkout@v2
99+
- uses: actions/checkout@v3
100100
with:
101101
fetch-depth: 1
102-
- uses: actions/setup-node@v2
102+
- uses: actions/setup-node@v3
103103
with:
104104
node-version: 16
105105
- name: Get yarn cache directory path
106106
id: yarn-cache-dir-path
107107
run: echo "::set-output name=dir::$(yarn cache dir)"
108-
- uses: actions/cache@v2
108+
- uses: actions/cache@v3
109109
name: Yarn Cache
110110
id: yarn-cache
111111
with:

.github/workflows/pr_title.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
1919
steps:
20-
- uses: actions/setup-node@v2
20+
- uses: actions/setup-node@v3
2121
with:
2222
node-version: 16
23-
- uses: amannn/action-semantic-pull-request@v4.2.0
23+
- uses: amannn/action-semantic-pull-request@v5
2424
with:
2525
validateSingleCommit: true
2626
validateSingleCommitMatchesPrTitle: true

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
timeout-minutes: 5
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
with:
1818
ref: 'main'
1919
fetch-depth: 0
20-
- uses: actions/setup-node@v2
20+
- uses: actions/setup-node@v3
2121
with:
2222
node-version: 16
2323
- name: Yarn Install
@@ -32,7 +32,7 @@ jobs:
3232
git config --global user.name '@Salakar'
3333
git config --global user.email '[email protected]'
3434
git remote set-url origin [email protected]:$GITHUB_REPOSITORY
35-
- uses: webfactory/ssh-agent@v0.5.3
35+
- uses: webfactory/ssh-agent@v0.7.0
3636
with:
3737
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
3838
- name: Publish Packages

.github/workflows/tests_e2e_android.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ jobs:
4545
with:
4646
all_but_latest: true
4747

48-
- uses: actions/checkout@v2
48+
- uses: actions/checkout@v3
4949
with:
5050
fetch-depth: 50
5151

5252
# Set up tool versions
53-
- uses: actions/setup-node@v2
53+
- uses: actions/setup-node@v3
5454
with:
5555
node-version: 16
5656

5757
- name: Configure JDK 1.11
58-
uses: actions/setup-java@v2
58+
uses: actions/setup-java@v3
5959
with:
6060
distribution: 'temurin'
6161
java-version: '11'
@@ -68,7 +68,7 @@ jobs:
6868
echo "::set-output name=yarn-cache-dir::$(yarn cache dir)"
6969
echo "::set-output name=tempdir::$TMPDIR"
7070
71-
- uses: actions/cache@v2
71+
- uses: actions/cache@v3
7272
name: Yarn Cache
7373
id: yarn-cache
7474
with:
@@ -85,7 +85,7 @@ jobs:
8585
command: DETOX_DISABLE_POSTINSTALL=1 yarn --no-audit --prefer-offline
8686

8787
- name: Cache Firestore Emulator
88-
uses: actions/cache@v2
88+
uses: actions/cache@v3
8989
with:
9090
path: ~/.cache/firebase/emulators
9191
key: firebase-emulators-v1-${{ github.run_id }}
@@ -94,7 +94,7 @@ jobs:
9494
- name: Start Firestore Emulator
9595
run: yarn tests:emulator:start-ci
9696

97-
- uses: actions/cache@v2
97+
- uses: actions/cache@v3
9898
name: Gradle Cache
9999
with:
100100
path: ~/.gradle/caches
@@ -110,7 +110,7 @@ jobs:
110110
command: yarn tests:android:build
111111

112112
- name: Metro Bundler Cache
113-
uses: actions/cache@v2
113+
uses: actions/cache@v3
114114
with:
115115
path: ${{ steps.workflow-variables.outputs.metro-cache }}
116116
key: ${{ runner.os }}-metro-v1-${{ github.run_id }}

.github/workflows/tests_e2e_ios.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
all_but_latest: true
3535

3636
# Set up tool versions
37-
- uses: actions/setup-node@v2
37+
- uses: actions/setup-node@v3
3838
with:
3939
node-version: 16
4040

4141
- name: Configure JDK 1.11
42-
uses: actions/setup-java@v2
42+
uses: actions/setup-java@v3
4343
with:
4444
distribution: 'temurin'
4545
java-version: '11'
@@ -60,15 +60,15 @@ jobs:
6060
echo "::set-output name=xcode-version::$(xcodebuild -version|tail -1|cut -f3 -d' ')"
6161
echo "::set-output name=yarn-cache-dir::$(yarn cache dir)"
6262
63-
- uses: actions/cache@v2
63+
- uses: actions/cache@v3
6464
name: Yarn Cache
6565
id: yarn-cache
6666
with:
6767
path: ${{ steps.workflow-variables.outputs.yarn-cache-dir }}
6868
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('yarn.lock') }}
6969
restore-keys: ${{ runner.os }}-yarn-v1
7070

71-
- uses: actions/cache@v2
71+
- uses: actions/cache@v3
7272
name: Detox Framework Cache
7373
id: detox-cache
7474
with:
@@ -103,7 +103,7 @@ jobs:
103103
max_attempts: 3
104104
command: gem update cocoapods xcodeproj
105105

106-
- uses: actions/cache@v2
106+
- uses: actions/cache@v3
107107
name: Cache Pods
108108
id: pods-cache
109109
with:
@@ -120,7 +120,7 @@ jobs:
120120
command: yarn tests:ios:pod:install
121121

122122
- name: Cache Firestore Emulator
123-
uses: actions/cache@v2
123+
uses: actions/cache@v3
124124
with:
125125
path: ~/.cache/firebase/emulators
126126
key: firebase-emulators-v1-${{ github.run_id }}
@@ -154,7 +154,7 @@ jobs:
154154
shell: bash
155155

156156
- name: Metro Bundler Cache
157-
uses: actions/cache@v2
157+
uses: actions/cache@v3
158158
with:
159159
path: ${{ steps.workflow-variables.outputs.metro-cache }}
160160
key: ${{ runner.os }}-metro-v1-${{ github.run_id }}
@@ -187,7 +187,7 @@ jobs:
187187
run: gzip -9 simulator.log
188188

189189
- name: Upload Simulator Log
190-
uses: actions/upload-artifact@v2
190+
uses: actions/upload-artifact@v3
191191
if: always()
192192
with:
193193
name: simulator_log

.github/workflows/tests_jest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ jobs:
3030
- uses: styfle/[email protected]
3131
with:
3232
all_but_latest: true
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3434
with:
3535
fetch-depth: 50
36-
- uses: actions/setup-node@v2
36+
- uses: actions/setup-node@v3
3737
with:
3838
node-version: 16
3939
- name: Get yarn cache directory path
4040
id: yarn-cache-dir-path
4141
run: echo "::set-output name=dir::$(yarn cache dir)"
42-
- uses: actions/cache@v2
42+
- uses: actions/cache@v3
4343
name: Yarn Cache
4444
id: yarn-cache
4545
with:

0 commit comments

Comments
 (0)