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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-node@v4
Expand All @@ -33,7 +33,7 @@ jobs:
name: Contract tests & build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
name: Script syntax check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Check deploy.sh syntax
run: bash -n scripts/deploy.sh
Expand All @@ -125,7 +125,7 @@ jobs:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
NEXT_PUBLIC_STELLAR_NETWORK: testnet
NEXT_PUBLIC_RPC_URL: https://soroban-testnet.stellar.org
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
working-directory: frontend

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0 # full history for changelog generation

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reproducible-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# ── Build the reproducible Docker image ──────────────────────────────
# The image installs the compiler and pre-fetches all Cargo deps but
Expand Down
Loading