Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deployFreighterApiBeta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: release/${{ github.event.inputs.release }}
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- name: Build package
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 22
registry-url: "https://registry.npmjs.org"
Expand All @@ -41,7 +41,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Slack Notification
uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 #v2.3.3
uses: rtCamp/action-slack-notify@33ca3be66c6f378fe1610fd1d5258632dbed5e58 #v2.4.0
env:
MSG_MINIMAL: true
SLACK_CHANNEL: team-wallet-eng
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deployFreighterApiProduction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- name: Build package
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 22
registry-url: "https://registry.npmjs.org"
Expand All @@ -38,13 +38,13 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 #v7.0.9
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 #v8.1.1
with:
title:
Bump @stellar/freighter-api version to ${{
github.event.inputs.version }}
- name: Slack Notification
uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 #v2.3.3
uses: rtCamp/action-slack-notify@33ca3be66c6f378fe1610fd1d5258632dbed5e58 #v2.4.0
env:
MSG_MINIMAL: true
SLACK_CHANNEL: release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/newRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo "branch=${BRANCH}" >> $GITHUB_OUTPUT

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6
with:
fetch-depth: 0
fetch-tags: true
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

- name: Open PR against release branch
if: ${{ steps.commit_version_branch.outputs.has_changes == 'true' }}
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
env:
APP_VERSION: ${{ steps.normalize_version.outputs.app_version }}
RELEASE_BRANCH: ${{ steps.set_branches.outputs.release_branch }}
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
if:
inputs.branch == 'master' &&
steps.commit_and_push_bump_version.outputs.has_changes == 'true'
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
env:
APP_VERSION: ${{ steps.normalize_version.outputs.app_version }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prPreview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
exit 1

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6
with:
# Default leaves a GITHUB_TOKEN auth header in .git/config for the
# rest of the job. With contents:write granted, any subsequent
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
mv /tmp/v2.json ./extension/public/static/manifest/v2.json

- name: Setup Node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 22

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/runIntegrationTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
run: |
echo "Error: This workflow must be run from the master branch."
exit 1
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6
with:
fetch-depth: 1
- run: corepack enable
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 22
- run: yarn
Expand All @@ -35,7 +35,7 @@ jobs:
- run: yarn build:extension
- run: yarn test:ci
- run: yarn test:e2e
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: ${{ !cancelled() }}
with:
name: playwright-report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/runTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
timeout-minutes: 45
runs-on: macos-latest-xlarge
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6
with:
fetch-depth: 1
- run: corepack enable
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 22
- run: yarn
Expand All @@ -28,7 +28,7 @@ jobs:
- run: yarn build:extension
- run: yarn test:ci
- run: yarn test:e2e
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: ${{ !cancelled() }}
with:
name: playwright-report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/socket-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
socket-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: ruby/setup-ruby@12fd324f1d0b43274fdc8130f6980590a667c455 # v1.312.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
with:
ruby-version: "3.4.9"
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22.22.3"
- name: Enable Corepack (yarn/pnpm per repo packageManager)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/submitBeta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
gh run cancel ${{ github.run_id }}
gh run watch ${{ github.run_id }}
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref:
${{ github.event.inputs.ref_name != '' &&
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Enable Corepack
run: corepack enable
- name: Build extension
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 22
- run: >
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
asset_content_type: application/zip
# - name:
- name: Submit extension to Chrome
uses: mnao305/chrome-extension-upload@4008e29e13c144d0f6725462cbd49b7c291b4928 #v5.0.0
uses: mnao305/chrome-extension-upload@fdfe79400af990f5145a319e834aee64907ccff4 #v6.0.0
with:
file-path: ./extension/build/build.zip
extension-id: "kcigoalhjaghfigblagmiopnefgenfjb"
Expand All @@ -154,7 +154,7 @@ jobs:
publish: true
publish-target: trustedTesters
- name: Slack Notification
uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 #v2.3.3
uses: rtCamp/action-slack-notify@33ca3be66c6f378fe1610fd1d5258632dbed5e58 #v2.4.0
env:
MSG_MINIMAL: true
SLACK_CHANNEL: team-wallet-eng
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/submitProduction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
exit 1
fi
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref:
${{ github.event.inputs.ref_name != '' &&
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Enable Corepack
run: corepack enable
- name: Build extension
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 22
- run: >
Expand Down Expand Up @@ -105,12 +105,12 @@ jobs:
commitish: ${{ steps.checkout_sha.outputs.sha }}
- name: Build for Firefox
id: web-ext-build
uses: kewisch/action-web-ext@fe10addf5d5e5ba6b78ffde720dd488a27d10e8c #v1
uses: kewisch/action-web-ext@84a13bb9e1b6108c43788ba091c41ca1dba6ad45 #v2.0
with:
cmd: build
source: ./extension/build
- name: Submit extension to Firefox
uses: kewisch/action-web-ext@fe10addf5d5e5ba6b78ffde720dd488a27d10e8c #v1
uses: kewisch/action-web-ext@84a13bb9e1b6108c43788ba091c41ca1dba6ad45 #v2.0
with:
cmd: sign
source: ${{ steps.web-ext-build.outputs.target }}
Expand All @@ -127,7 +127,7 @@ jobs:
run: zip -qq -r ./build_chrome.zip *
working-directory: ./extension/build
- name: Submit extension to Chrome
uses: mnao305/chrome-extension-upload@4008e29e13c144d0f6725462cbd49b7c291b4928 #v5.0.0
uses: mnao305/chrome-extension-upload@fdfe79400af990f5145a319e834aee64907ccff4 #v6.0.0
with:
file-path: ./extension/build/build_chrome.zip
extension-id: "bcacfldlkkdogcmkkibnjlakofdplcbk"
Expand All @@ -153,7 +153,7 @@ jobs:
asset_name: build-${{ steps.package_version.outputs.version }}.zip
asset_content_type: application/zip
- name: Slack Notification
uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 #v2.3.3
uses: rtCamp/action-slack-notify@33ca3be66c6f378fe1610fd1d5258632dbed5e58 #v2.4.0
env:
MSG_MINIMAL: true
SLACK_CHANNEL: release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/submitSafari.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: maxim-lobanov/setup-xcode@v1
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Update package.json version
uses: jossef/action-set-json-field@2a0f7d953b580b828717daf4de7fafc7e4135e97 #v2
with:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Enable Corepack
run: corepack enable
- name: Build extension
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 22
- run:
Expand All @@ -70,7 +70,7 @@ jobs:
xcrun safari-web-extension-converter ./extension/build
--project-location $GYM_PROJECT --macos-only
- name: Set up ruby env
uses: ruby/setup-ruby@v1.268.0
uses: ruby/setup-ruby@v1.321.0
with:
ruby-version: 2.6.10
bundler-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testSlack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Slack Notification
uses: rtCamp/action-slack-notify@07cbdbfd6c6190970778d8f98f11d073b2932aae #v2.3.3
uses: rtCamp/action-slack-notify@33ca3be66c6f378fe1610fd1d5258632dbed5e58 #v2.3.3
env:
MSG_MINIMAL: true
SLACK_CHANNEL: team-wallet-eng
Expand Down
Loading