From f93fdcbf927f870cbb69bcb9afc492c7a89cfb3d Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Tue, 30 May 2023 06:48:13 -0500 Subject: [PATCH] Update check.yml --- .github/workflows/check.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 412fbdc1..d6778a38 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -11,15 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3.0.0 + uses: actions/checkout@v3 - name: Install dependencies - run: | - pip install -r requirements.txt + run: pip install -r requirements.txt - name: Build documentation - run: | - mkdocs build + run: mkdocs build - name: Setup cloudformation linter - uses: ScottBrenner/cfn-lint-action@v2.2.1 + uses: ScottBrenner/cfn-lint-action@v2 - name: Run cloudformation lint run: cfn-lint -t stack.yml - name: Check dead links