aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.devcontainer/devcontainer-lock.json9
-rw-r--r--.devcontainer/devcontainer.json9
-rw-r--r--.github/dependabot.yml4
-rw-r--r--.pre-commit-config.yaml1
4 files changed, 23 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer-lock.json b/.devcontainer/devcontainer-lock.json
new file mode 100644
index 00000000..66ee1b70
--- /dev/null
+++ b/.devcontainer/devcontainer-lock.json
@@ -0,0 +1,9 @@
+{
+ "features": {
+ "ghcr.io/devcontainers/features/python:1": {
+ "version": "1.4.2",
+ "resolved": "ghcr.io/devcontainers/features/python@sha256:bf021f1800543f08bf029c449a3f25341be782b620802befa1f8e6ee51cf6cf6",
+ "integrity": "sha256:bf021f1800543f08bf029c449a3f25341be782b620802befa1f8e6ee51cf6cf6"
+ }
+ }
+} \ No newline at end of file
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 00000000..7032b4d6
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,9 @@
+{
+ "image": "mcr.microsoft.com/devcontainers/universal:2",
+ "features": {
+ "ghcr.io/devcontainers/features/python:1": {
+ "version": "3.12",
+ "installTools": false
+ },
+ }
+}
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index f60e94af..49f23ff2 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -1,5 +1,9 @@
version: 2
updates:
+ - package-ecosystem: "devcontainers"
+ directory: "/"
+ schedule:
+ interval: "daily"
- package-ecosystem: "pip"
directory: "/"
schedule:
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 33674845..7150fcb7 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -6,6 +6,7 @@ repos:
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
+ exclude: .devcontainer/devcontainer-lock.json
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]