Skip to content

Update ksp documentation versions to latest #321

Update ksp documentation versions to latest

Update ksp documentation versions to latest #321

Workflow file for this run

name: Docs CI
on:
push:
branches:
- gh-pages
pull_request:
branches:
- gh-pages
defaults:
run:
shell: bash
jobs:
validate-latest-dagger-version:
name: 'Validate Dagger version'
runs-on: ubuntu-latest
steps:
# Cancel previous runs on the same branch to avoid unnecessary parallel
# runs of the same job. See https://github.com/google/go-github/pull/1821
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.8.0
with:
access_token: ${{ github.token }}
- name: 'Check out repository'
uses: actions/checkout@v2
- name: 'Validate latest Dagger version'
run: ./.github/scripts/validate-latest-dagger-version.sh _config.yml
env:
GH_TOKEN: ${{ github.token }}