Skip to content

build(deps): bump astral-sh/setup-uv from 6.5.0 to 6.6.0 in the github-actions group #1323

build(deps): bump astral-sh/setup-uv from 6.5.0 to 6.6.0 in the github-actions group

build(deps): bump astral-sh/setup-uv from 6.5.0 to 6.6.0 in the github-actions group #1323

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
check-site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
with:
enable-cache: true
- name: run site build
run: make site
check-schema:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
with:
enable-cache: true
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: ">=1.20.5"
- name: fail if the schema has changed
run: |
make limbo-schema.json
git diff --exit-code -- limbo-schema.json
- name: fail if schema.go has changed
run: |
make -C harness/gocryptox509 schema.go
git diff --exit-code -- harness/gocryptox509/schema.go
check-harnesses:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: ">=1.20.5"
- name: check that harnesses build
run: make build-harnesses -j
all-checks-pass:
if: always()
needs:
- check-site
- check-schema
- check-harnesses
runs-on: ubuntu-latest
steps:
- name: check jobs
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
with:
jobs: ${{ toJSON(needs) }}