all repos

onasty @ b650519

a one-time notes service
2 files changed, 12 insertions(+), 1 deletions(-)
chore(ci): get tools version from .tool-versions (#170)

Author: Olexandr Smirnov ss2316544@gmail.com
Committed by: GitHub noreply@github.com
Committed at: 2025-07-22 14:13:32 +0300
Parent: a705d9c
M .github/workflows/elm.yml

@@ -17,7 +17,14 @@ run:

working-directory: web steps: - uses: actions/checkout@v4 + - name: Read .tool-versions + uses: marocchino/tool-versions-action@v1 + id: versions + - uses: oven-sh/setup-bun@v2 + with: + bun-version: ${{ steps.versions.outputs.bun }} + - name: Install deps run: bun install --frozen-lockfile
M .github/workflows/golang.yml

@@ -36,8 +36,12 @@ lint:

runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Read .tool-versions + uses: marocchino/tool-versions-action@v1 + id: versions + - name: Golangci Lint uses: golangci/golangci-lint-action@v8 with: - version: latest + version: "v${{ steps.versions.outputs.golangci-lint }}" args: ./...