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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install Rust toolchain
run: rustup toolchain install stable --profile minimal --component clippy --component rustfmt
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
STELLAR_FORGE_BROWSER_SMOKE_SKIP_INSTALL: "1"
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install Rust toolchain
run: rustup toolchain install stable --profile minimal
Expand All @@ -92,15 +92,15 @@ jobs:
run: echo "path=$(pnpm store path --silent)" >> "$GITHUB_OUTPUT"

- name: Cache pnpm store
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ steps.pnpm-store-path.outputs.path }}
key: ${{ runner.os }}-browser-smoke-pnpm-store-v1
restore-keys: |
${{ runner.os }}-browser-smoke-pnpm-store-

- name: Cache Playwright browsers
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ env.PLAYWRIGHT_BROWSERS_PATH }}
key: ${{ runner.os }}-browser-smoke-playwright-v1
Expand All @@ -122,7 +122,7 @@ jobs:
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install Rust toolchain
run: rustup toolchain install stable --profile minimal
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
target: aarch64-apple-darwin
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
SNAP_CHANNEL: ${{ vars.SNAP_CHANNEL || 'stable' }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}

Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
VERSION: ${{ needs.publish-preflight.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}

Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}

Expand Down Expand Up @@ -461,7 +461,7 @@ jobs:
VERSION: ${{ needs.publish-preflight.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}

Expand Down Expand Up @@ -565,7 +565,7 @@ jobs:
SNAP_CHANNEL: ${{ needs.publish-preflight.outputs.snap_channel }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}

Expand Down
Loading