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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
go tool gotestsum -- -race -v -count=1 ./... \
-coverpkg="./cmd/...,./internal/...,${pkgs}" -coverprofile=coverage.out

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: code-coverage-report
path: coverage.out
Expand All @@ -39,7 +39,7 @@ jobs:
- test
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: code-coverage-report
- uses: coverallsapp/github-action@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
mv tmp.$$.json package.json
npm pack

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: installer
path: supabase-1.28.0.tgz
Expand All @@ -43,7 +43,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: installer

Expand All @@ -59,7 +59,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: installer

Expand All @@ -75,7 +75,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: installer

Expand All @@ -98,7 +98,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: installer

Expand All @@ -117,7 +117,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: installer

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
go-version-file: go.mod
cache: true

- uses: goreleaser/goreleaser-action@v6
- uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: ~> v2
Expand Down
Loading