/
githubmirror
/
compose
Обзор
Документация
Войти
/
githubmirror
/
compose
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/docs-upstream.yml
45 строк
1 KB
dependabot[bot]
build(deps): bump actions/checkout from 7.0.0 to 7.0.1
30 июл 2026, 12:41
30 июл 2026, 12:41
f2a6f94
Код
Авторство
О чём код?
# this workflow runs the remote validate bake target from docker/docs # to check if yaml reference docs used in this repo are valid name: docs-upstream permissions: contents: read concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true on: push: branches: - 'main' - 'v[0-9]*' paths: - '.github/workflows/docs-upstream.yml' - 'docs/**' pull_request: paths: - '.github/workflows/docs-upstream.yml' - 'docs/**' jobs: docs-yaml: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Upload reference YAML docs uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: docs-yaml path: docs/reference retention-days: 1 validate: uses: docker/docs/.github/workflows/validate-upstream.yml@main # zizmor: ignore[unpinned-uses] needs to validate against latest docs changes needs: - docs-yaml with: module-name: docker/compose