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
2 changes: 1 addition & 1 deletion .github/workflows/cd-publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: main
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
!contains(github.event.head_commit.message, 'chore: bump version')
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
PUBLIC_CONVEX_URL: "https://example.convex.cloud"
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.8

- name: Cache Bun + Turbo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.bun/install/cache
Expand Down Expand Up @@ -76,15 +76,15 @@ jobs:
PUBLIC_CONVEX_URL: "https://example.convex.cloud"
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.8

- name: Cache Bun + Turbo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.bun/install/cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: javascript-typescript
queries: security-extended

- name: Analyze
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
2 changes: 1 addition & 1 deletion .github/workflows/org-required-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
statuses: read
steps:
- name: Wait for merge gates
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const owner = context.repo.owner;
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/preview-seed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- name: Resolve pull request context
id: pr
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
DEPLOY_REF: ${{ env.DEPLOYMENT_REF }}
DEPLOY_SHA: ${{ env.DEPLOYMENT_SHA }}
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:

- name: Checkout
if: steps.pr.outputs.skip != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Bun
if: steps.pr.outputs.skip != 'true'
Expand Down Expand Up @@ -221,15 +221,15 @@ jobs:
- name: Upload browser QA artifacts
id: upload_browser_qa
if: steps.pr.outputs.skip != 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: browser-qa-preview-${{ github.event.deployment.id }}
path: artifacts/browser-qa-preview/**
if-no-files-found: error

- name: Comment browser QA links on PR
if: steps.pr.outputs.skip != 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
ARTIFACT_URL: ${{ steps.upload_browser_qa.outputs.artifact-url }}
REPLAY_URL: ${{ steps.browser_qa_meta.outputs.replay_url }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tui-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
"$hash *${{ matrix.exec_name }}" | Set-Content "apps/tui/dist/${{ matrix.exec_name }}.sha256"

- name: Upload binary artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.asset_name }}
path: |
Expand All @@ -83,15 +83,15 @@ jobs:
RELEASE_QA_TARGET_URL: ${{ vars.RELEASE_QA_TARGET_URL }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.8

- name: Cache Bun + Turbo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.bun/install/cache
Expand All @@ -101,7 +101,7 @@ jobs:
${{ runner.os }}-bun-turbo-

- name: Cache Playwright browsers
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/bun.lock', '**/bun.lockb', 'package.json', 'apps/**/package.json', 'packages/**/package.json') }}
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
--out-dir artifacts/browser-qa-release

- name: Upload browser QA artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: browser-qa-release
path: artifacts/browser-qa-release/**
Expand All @@ -151,7 +151,7 @@ jobs:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
path: release-assets

Expand Down
Loading