Expo Dependencies #191
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Expo Dependencies | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- uses: expo/expo-github-action@4479f0b3692e25169fa71a02c30d6586ec2f5601 # tag=v7.2.0 | |
with: | |
expo-version: 4.x | |
packager: npm | |
- run: npx expo-cli upgrade | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v4.2.4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
labels: kind/dependencies | |
commit-message: "build(deps): bump expo dependencies" | |
committer: DeFiChain Bot <[email protected]> | |
author: DeFiChain Bot <[email protected]> | |
title: "build(deps): bump expo dependencies" | |
body: | | |
#### What kind of PR is this?: | |
/kind dependencies | |
#### What this PR does / why we need it: | |
Bump expo dependencies to newest release | |
branch: defichain-bot/expo-deps |