mirror of
https://github.com/coredns/coredns.git
synced 2026-08-27 15:17:06 -04:00
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 10.0.0 to 10.0.1.
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](ae62891fec...20cfd1bf94)
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
dependency-version: 10.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
544 B
YAML
20 lines
544 B
YAML
name: 'Yamllint GitHub Actions'
|
|
on:
|
|
- pull_request
|
|
permissions: read-all
|
|
jobs:
|
|
yamllint:
|
|
name: 'Yamllint'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
- name: 'Setup uv'
|
|
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
|
|
- name: 'Yamllint'
|
|
run: |
|
|
uvx --from 'yamllint==1.38.0' yamllint .
|
|
echo "yamllint passed"
|