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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ env.BUN_VERSION }}

- name: Cache Bun packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.bun/install/cache
key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }}
Expand Down Expand Up @@ -81,15 +81,15 @@ jobs:
runner: windows-2025
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ env.BUN_VERSION }}

- name: Cache Bun packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.bun/install/cache
key: bun-${{ matrix.id }}-${{ hashFiles('bun.lock') }}
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
rustup default stable

- name: Cache Cargo packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
channel: ${{ steps.meta.outputs.channel }}
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
arch: x64
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install Linux tray dependencies
if: runner.os == 'Linux'
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
needs: release-dry-run
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Download dry-run platform manifests
uses: actions/download-artifact@v8
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
echo "tag=v$VERSION" >> "$GITHUB_OUTPUT"

- name: Check out release tag
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
ref: ${{ steps.version.outputs.tag }}
fetch-depth: 0
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
ref: ${{ needs.setup.outputs.source_sha }}
fetch-depth: 0
Expand All @@ -212,7 +212,7 @@ jobs:
bun-version: ${{ env.BUN_VERSION }}

- name: Cache Bun packages
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.bun/install/cache
key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }}
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
arch: x64
steps:
- name: Check out repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
ref: ${{ needs.setup.outputs.source_sha }}
fetch-depth: 0
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Cache Bun packages
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.bun/install/cache
key: bun-release-${{ matrix.id }}-${{ hashFiles('bun.lock') }}
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
rustup default stable

- name: Cache Cargo packages
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -610,7 +610,7 @@ jobs:
- runtime-artifacts
steps:
- name: Check out repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
ref: ${{ needs.setup.outputs.source_sha }}
fetch-depth: 0
Expand Down