mirror of
https://github.com/coder/coder.git
synced 2026-06-04 13:38:21 +00:00
57a65c15bf
Use specific commit SHAs for GitHub actions across various workflows to enhance reliability and reproducibility. This change ensures that actions run against a known version, reducing the risk of unexpected issues due to updates in the third-party action repositories. This contributes to improving the score in #14879
11 lines
271 B
YAML
11 lines
271 B
YAML
name: Setup sqlc
|
|
description: |
|
|
Sets up the sqlc environment for tests, builds, etc.
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup sqlc
|
|
uses: sqlc-dev/setup-sqlc@c0209b9199cd1cce6a14fc27cabcec491b651761 # v4.0.0
|
|
with:
|
|
sqlc-version: "1.25.0"
|