We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1541144 + 7389a1b commit 0923631Copy full SHA for 0923631
.github/dependabot.yml
@@ -0,0 +1,13 @@
1
+---
2
+
3
+version: 2
4
+updates:
5
+ - package-ecosystem: "github-actions"
6
+ directory: "/"
7
+ schedule:
8
+ interval: "weekly"
9
10
+ - package-ecosystem: "pip"
11
12
13
.github/workflows/build.yml
@@ -18,11 +18,12 @@ jobs:
18
- uses: actions/checkout@v2
19
- uses: actions/setup-python@v2
20
with:
21
- python-version: 3.8
+ python-version: 3.9
22
- name: Store installed Python version
23
run: |
24
- echo "::set-env name=PY_VERSION::"\
25
- "$(python -c "import platform;print(platform.python_version())")"
+ echo "PY_VERSION="\
+ "$(python -c "import platform;print(platform.python_version())")" \
26
+ >> $GITHUB_ENV
27
- name: Cache linting environments
28
uses: actions/cache@v2
29
0 commit comments