From 8a24f3afc576e252831b54e739e99e53921d50f1 Mon Sep 17 00:00:00 2001 From: Kyle Gray Date: Thu, 4 Jan 2024 08:37:22 -0800 Subject: [PATCH] Update workflow to use setup-sqlc (#41) --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 243b51b..b6e5983 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,10 +13,10 @@ jobs: - uses: actions/setup-go@v5 with: go-version: '1.21' - - run: go install github.com/sqlc-dev/sqlc/cmd/sqlc@883c70a44e3c9e260598ae09034c92b51f2c9129 - # - uses: sqlc-dev/setup-sqlc@v4 - # with: - # sqlc-version: '1.24.0' + # - run: go install github.com/sqlc-dev/sqlc/cmd/sqlc@main + - uses: sqlc-dev/setup-sqlc@v4 + with: + sqlc-version: '1.25.0' - run: make - run: make test - run: sqlc diff