Update Dagger yml and README with new latest version number. #339
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
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 }} |