Skip to content

Commit

Permalink
test(deps): bump all actions dependencies to current
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy committed Oct 30, 2022
1 parent 97a4ea5 commit f4e6900
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 39 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/create_test_patches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ jobs:
with:
all_but_latest: true

- uses: actions/checkout@v2
- uses: actions/checkout@v3

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

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16

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

- uses: actions/cache@v2
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
with:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
shell: bash

- name: Upload Test Patches
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: patches
path: ~/template/patches/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- uses: styfle/[email protected]
with:
all_but_latest: true
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Get yarn cache directory path
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:
- uses: styfle/[email protected]
with:
all_but_latest: true
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Configure JDK 1.11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
with:
Expand Down Expand Up @@ -62,16 +62,16 @@ jobs:
- uses: styfle/[email protected]
with:
all_but_latest: true
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
with:
Expand All @@ -96,16 +96,16 @@ jobs:
- uses: styfle/[email protected]
with:
all_but_latest: true
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: amannn/action-semantic-pull-request@v4.2.0
- uses: amannn/action-semantic-pull-request@v5
with:
validateSingleCommit: true
validateSingleCommitMatchesPrTitle: true
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: 'main'
fetch-depth: 0
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Yarn Install
Expand All @@ -32,7 +32,7 @@ jobs:
git config --global user.name '@Salakar'
git config --global user.email '[email protected]'
git remote set-url origin [email protected]:$GITHUB_REPOSITORY
- uses: webfactory/ssh-agent@v0.5.3
- uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Publish Packages
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests_e2e_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ jobs:
with:
all_but_latest: true

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 50

# Set up tool versions
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16

- name: Configure JDK 1.11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
Expand All @@ -68,7 +68,7 @@ jobs:
echo "::set-output name=yarn-cache-dir::$(yarn cache dir)"
echo "::set-output name=tempdir::$TMPDIR"
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
with:
Expand All @@ -85,7 +85,7 @@ jobs:
command: DETOX_DISABLE_POSTINSTALL=1 yarn --no-audit --prefer-offline

- name: Cache Firestore Emulator
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/firebase/emulators
key: firebase-emulators-v1-${{ github.run_id }}
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Start Firestore Emulator
run: yarn tests:emulator:start-ci

- uses: actions/cache@v2
- uses: actions/cache@v3
name: Gradle Cache
with:
path: ~/.gradle/caches
Expand All @@ -110,7 +110,7 @@ jobs:
command: yarn tests:android:build

- name: Metro Bundler Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.workflow-variables.outputs.metro-cache }}
key: ${{ runner.os }}-metro-v1-${{ github.run_id }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/tests_e2e_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
all_but_latest: true

# Set up tool versions
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16

- name: Configure JDK 1.11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
Expand All @@ -60,15 +60,15 @@ jobs:
echo "::set-output name=xcode-version::$(xcodebuild -version|tail -1|cut -f3 -d' ')"
echo "::set-output name=yarn-cache-dir::$(yarn cache dir)"
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
with:
path: ${{ steps.workflow-variables.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-v1

- uses: actions/cache@v2
- uses: actions/cache@v3
name: Detox Framework Cache
id: detox-cache
with:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
max_attempts: 3
command: gem update cocoapods xcodeproj

- uses: actions/cache@v2
- uses: actions/cache@v3
name: Cache Pods
id: pods-cache
with:
Expand All @@ -120,7 +120,7 @@ jobs:
command: yarn tests:ios:pod:install

- name: Cache Firestore Emulator
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/firebase/emulators
key: firebase-emulators-v1-${{ github.run_id }}
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
shell: bash

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

- name: Upload Simulator Log
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: always()
with:
name: simulator_log
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests_jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
- uses: styfle/[email protected]
with:
all_but_latest: true
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 50
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
with:
Expand Down

0 comments on commit f4e6900

Please sign in to comment.