Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:

- name: Upload Playwright artifacts
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: playwright-report-${{ github.run_id }}
path: |
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
run: bun --bun run build

- name: Upload build artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build-${{ github.run_id }}
path: build/
Expand Down Expand Up @@ -354,7 +354,7 @@ jobs:
touch "/tmp/digests/${digest#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: digests-${{ steps.platform.outputs.slug }}
path: /tmp/digests/*
Expand All @@ -376,7 +376,7 @@ jobs:

steps:
- name: Download digests
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: /tmp/digests
pattern: digests-*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:

- name: Upload Playwright artifacts
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: playwright-report-${{ matrix.browser }}-${{ github.run_id }}
path: |
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
touch "/tmp/digests/${digest#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: digests-${{ steps.platform.outputs.slug }}
path: /tmp/digests/*
Expand All @@ -349,7 +349,7 @@ jobs:

steps:
- name: Download digests
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: /tmp/digests
pattern: digests-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
echo '```' >> $GITHUB_STEP_SUMMARY

- name: Upload coverage artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-go
path: sdks/go/coverage.out
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
test-install/bin/python -c "from logwell import Logwell; print('Import OK')"

- name: Upload build artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sdk-python-dist
path: sdks/python/dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
run: bun run size

- name: Upload build artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sdk-typescript-dist
path: sdks/typescript/dist/
Expand Down
Loading