mirror of
https://github.com/docker/compose.git
synced 2026-06-28 12:13:24 +00:00
Some checks are pending
ci / validate (lint) (push) Waiting to run
ci / validate (validate-docs) (push) Waiting to run
ci / validate (validate-go-mod) (push) Waiting to run
ci / validate (validate-headers) (push) Waiting to run
ci / binary (push) Waiting to run
ci / binary-finalize (push) Blocked by required conditions
ci / bin-image-test (push) Waiting to run
ci / test (push) Waiting to run
ci / e2e (plugin, oldstable) (push) Waiting to run
ci / e2e (standalone, oldstable) (push) Waiting to run
ci / e2e (plugin, stable) (push) Waiting to run
ci / e2e (standalone, stable) (push) Waiting to run
ci / coverage (push) Blocked by required conditions
ci / release (push) Blocked by required conditions
docs-upstream / docs-yaml (push) Waiting to run
docs-upstream / validate (push) Blocked by required conditions
merge / bin-image-prepare (push) Waiting to run
merge / bin-image (push) Blocked by required conditions
merge / module-image (push) Waiting to run
merge / desktop-edge-test (push) Blocked by required conditions
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
This workflow was updated in56e2dba366but it looks to have pinned to a version before the workflows were pinned;464a44a6e7/.github/workflows/validate-upstream.ymlThis patch updates the workflow to a version that uses pinned actions;00aefd5eae/.github/workflows/validate-upstream.ymlSigned-off-by: Sebastiaan van Stijn <github@gone.nl>
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
# 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
|
|
|
|
# Default to 'contents: read', which grants actions to read commits.
|
|
#
|
|
# If any permission is set, any permission not included in the list is
|
|
# implicitly set to "none".
|
|
#
|
|
# see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
|
|
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
-
|
|
name: Upload reference YAML docs
|
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
|
|
with:
|
|
name: docs-yaml
|
|
path: docs/reference
|
|
retention-days: 1
|
|
|
|
validate:
|
|
uses: docker/docs/.github/workflows/validate-upstream.yml@00aefd5eae73898c4d3bcd7a6fe95a039293706b # main 2026-03-24
|
|
needs:
|
|
- docs-yaml
|
|
with:
|
|
module-name: docker/compose
|