Skip to content

Commit

Permalink
Fix cfn-lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jtherrmann committed Jul 1, 2024
1 parent e7a4bfe commit bfbfcc2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
14 changes: 11 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: pip
directory: /
schedule:
interval: "daily"
interval: weekly
labels:
- bumpless
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
labels:
- bumpless
12 changes: 7 additions & 5 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ name: Static code analysis
on: push

jobs:

cfn-lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: scottbrenner/[email protected]
- uses: actions/setup-python@v5
with:
args: "--template cloudformation.yml"
python-version: 3.9
- run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- run: |
cfn-lint --info --template cloudformation.yml
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cfn-lint==1.4.2

0 comments on commit bfbfcc2

Please sign in to comment.