Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Added dependabot (#4)
Browse files Browse the repository at this point in the history
* Create dependabot.yml

* Fixed linting errors

* Updated Poetry template
  • Loading branch information
pcasteran authored Dec 3, 2022
1 parent 6f5e651 commit 5474251
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 8 deletions.
20 changes: 20 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
updates:

# Check for updates to GitHub Actions.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

# Check for updates to Docker dependencies.
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"

# Check for updates to npm dependencies.
- package-ecosystem: "npm"
directory: "test"
schedule:
interval: "weekly"
2 changes: 0 additions & 2 deletions .github/super-linter.env
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ VALIDATE_PYTHON_FLAKE8=true

VALIDATE_PYTHON_ISORT=true

VALIDATE_PYTHON_MYPY=true

VALIDATE_PYTHON_PYLINT=true

VALIDATE_SHELL_SHFMT=true
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
name: Build and test

on:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
name: Static analysis

on:
Expand Down
1 change: 0 additions & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
# Use the default configuration but exclude `typecheck` which produces false-positives.
linters:
disable:
Expand Down
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
Expand Down
3 changes: 2 additions & 1 deletion .yamllint.yml → .yamllint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
extends: default
rules:
truthy: disable
line-length:
max: 120
document-start:
present: false
2 changes: 1 addition & 1 deletion test/python/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ initialize_project() {

@test "poetry" {
# Initialize the project using the Poetry remote template.
initialize_project_for_template "https://github.com/pcasteran/cdktf-remote-template-python-poetry/archive/refs/heads/update_template.zip"
initialize_project_for_template "https://github.com/johnfraney/cdktf-remote-template-python-poetry/archive/refs/heads/main.zip"

# Check the initial state.
assert_file_not_exist "Pipfile"
Expand Down

0 comments on commit 5474251

Please sign in to comment.