From 99528d9cb4cece608c4ab693eec81c320eff307a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 17:55:01 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `3` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `actions/cache` from 3 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 22 +++++++++++----------- .github/workflows/publish.yml | 4 ++-- .github/workflows/release-dynamic.yml | 2 +- .github/workflows/security.yml | 6 +++--- .github/workflows/update-ios-sdk.yml | 2 +- .github/workflows/update-test-app.yml | 2 +- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5e0bbb7..d706287 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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" @@ -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') }} @@ -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" @@ -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') }} @@ -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 @@ -126,7 +126,7 @@ 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 @@ -134,7 +134,7 @@ jobs: 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" @@ -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') }} @@ -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 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 178535e..58be237 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 diff --git a/.github/workflows/release-dynamic.yml b/.github/workflows/release-dynamic.yml index 9d2e7fb..91fd163 100644 --- a/.github/workflows/release-dynamic.yml +++ b/.github/workflows/release-dynamic.yml @@ -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 diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 00fb1d9..363616e 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -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 diff --git a/.github/workflows/update-ios-sdk.yml b/.github/workflows/update-ios-sdk.yml index ba84318..3034127 100644 --- a/.github/workflows/update-ios-sdk.yml +++ b/.github/workflows/update-ios-sdk.yml @@ -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 diff --git a/.github/workflows/update-test-app.yml b/.github/workflows/update-test-app.yml index a240a96..e1c3963 100644 --- a/.github/workflows/update-test-app.yml +++ b/.github/workflows/update-test-app.yml @@ -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: |