Skip to content

Bump aws-actions/configure-aws-credentials from 6.1.2 to 6.2.0 in the dependencies group across 1 directory #1214

Bump aws-actions/configure-aws-credentials from 6.1.2 to 6.2.0 in the dependencies group across 1 directory

Bump aws-actions/configure-aws-credentials from 6.1.2 to 6.2.0 in the dependencies group across 1 directory #1214

Workflow file for this run

name: Build docs, check CloudFormation, check for dead links
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
check:
name: build docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Create virtual environment
run: python3 -m venv venv
- name: Install dependencies
run: venv/bin/pip install -r requirements.txt
- name: Build documentation
run: venv/bin/mkdocs build
- name: Setup cloudformation linter
uses: ScottBrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
- name: Run cloudformation lint
run: cfn-lint -t stack.yml
- name: Run dead links check
uses: tcort/github-action-markdown-link-check@e7c7a18363c842693fadde5d41a3bd3573a7a225 # v1.1.2
with:
folder-path: '.'
config-file: markdown-link-check-config.yml
use-verbose-mode: yes
use-quiet-mode: yes