Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🏗 Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: 🏗 Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: "yarn"
Expand All @@ -29,7 +29,7 @@ jobs:
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT

- name: 📦 Setup yarn cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand All @@ -53,10 +53,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🏗 Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: 🏗 Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: "yarn"
Expand All @@ -66,7 +66,7 @@ jobs:
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT

- name: 📦 Setup yarn cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
NODE_ENV: development

- name: 📦 Upload build artifact to GitHub
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: app-builds-android
path: ./example/app-dev.apk
Expand All @@ -126,15 +126,15 @@ jobs:
runs-on: macos-latest
steps:
- name: 🏗 Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: 🏗 Select Xcode (Expo SDK 55 requires >=26.0)
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable

- name: 🏗 Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: "yarn"
Expand All @@ -144,7 +144,7 @@ jobs:
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT

- name: 📦 Setup yarn cache
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
NODE_ENV: development

- name: 📦 Upload build artifact to GitHub
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: app-builds-ios
path: ./example/app-ios-dev.app
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
registry-url: https://registry.npmjs.org
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-dynamic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
} >> "$GITHUB_OUTPUT"

- name: Checkout static release tag
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: v${{ steps.version.outputs.static_version }}
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
container:
image: returntocorp/semgrep
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: semgrep ci
vuln-dep-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-ios-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
echo "branch=chore/update-ios-sdk-${VERSION}" >> "$GITHUB_OUTPUT"

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: master
repository: atomicfi/atomic-transact-react-native
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-test-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Trigger sdk-upgrade workflow in test app
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets.SDK_TEST_APPS_TOKEN }}
script: |
Expand Down