Compare commits
26 Commits
Author | SHA1 | Date | |
---|---|---|---|
fb4fc2ab5b | |||
1cce692f9c | |||
111f32d7f8 | |||
1349adcd59 | |||
d194551de3 | |||
5de2daed2d | |||
0f2ff28f1d | |||
0abf4448e7 | |||
e43fd2af7c | |||
7d0051f985 | |||
6b09b4a1a6 | |||
f86f84db43 | |||
561ecfbc91 | |||
0954200ebf | |||
9017433728 | |||
9a567a92e4 | |||
af7bc3b9bf | |||
555e9ff50e | |||
b42f97f2ef | |||
e4d88ef813 | |||
b36786d9c1 | |||
cd36a13f61 | |||
b36a966896 | |||
6d3c04c63f | |||
88096c8166 | |||
e838b0fa9a |
0
CODEOWNERS → .github/CODEOWNERS
vendored
0
CODEOWNERS → .github/CODEOWNERS
vendored
44
.github/dependabot.yml
vendored
Normal file
44
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
assignees:
|
||||
- "luketainton"
|
||||
reviewers:
|
||||
- "luketainton"
|
||||
commit-message:
|
||||
prefix: "chore(actions)"
|
||||
include: "scope"
|
||||
labels:
|
||||
- "dependencies"
|
||||
|
||||
- package-ecosystem: "docker"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
assignees:
|
||||
- "luketainton"
|
||||
reviewers:
|
||||
- "luketainton"
|
||||
commit-message:
|
||||
prefix: "chore(docker)"
|
||||
include: "scope"
|
||||
labels:
|
||||
- "dependencies"
|
||||
|
||||
- package-ecosystem: "pip"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
assignees:
|
||||
- "luketainton"
|
||||
reviewers:
|
||||
- "luketainton"
|
||||
commit-message:
|
||||
prefix: "chore(pip-prod)"
|
||||
prefix-development: "chore(pip-dev)"
|
||||
include: "scope"
|
||||
labels:
|
||||
- "dependencies"
|
0
renovate.json → .github/renovate.json
vendored
0
renovate.json → .github/renovate.json
vendored
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@ -6,16 +6,19 @@ on:
|
||||
- "README.md"
|
||||
- "LICENSE.md"
|
||||
- ".gitignore"
|
||||
- "CODEOWNERS"
|
||||
- "renovate.json"
|
||||
- ".github/CODEOWNERS"
|
||||
- ".github/renovate.json"
|
||||
- ".github/dependabot.yml"
|
||||
|
||||
jobs:
|
||||
pythonci:
|
||||
uses: luketainton/gha-workflows/.github/workflows/ci-python.yml@main
|
||||
secrets:
|
||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
||||
|
||||
dockerci:
|
||||
uses: luketainton/gha-workflows/.github/workflows/ci-docker.yml@main
|
||||
secrets:
|
||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -48,5 +48,5 @@ jobs:
|
||||
with:
|
||||
url: ${{ secrets.PORTAINER_WEBHOOK_URL }}
|
||||
method: POST
|
||||
timeout: 30000
|
||||
timeout: 60000
|
||||
preventFailureOnNoResponse: "true"
|
||||
|
@ -1,14 +1,14 @@
|
||||
appdirs==1.4.4
|
||||
astroid==3.0.2
|
||||
attrs==23.1.0
|
||||
astroid==3.0.3
|
||||
attrs==23.2.0
|
||||
autopep8==2.0.4
|
||||
backoff==2.2.1
|
||||
certifi==2023.11.17
|
||||
certifi==2024.2.2
|
||||
cfgv==3.4.0
|
||||
charset-normalizer==3.3.2
|
||||
click==8.1.7
|
||||
coloredlogs==15.0.1
|
||||
dill==0.3.7
|
||||
dill==0.3.8
|
||||
distlib==0.3.8
|
||||
filelock==3.13.1
|
||||
future==0.18.3
|
||||
@ -16,20 +16,20 @@ humanfriendly==10.0
|
||||
identify==2.5.33
|
||||
idna==3.6
|
||||
iniconfig==2.0.0
|
||||
lazy-object-proxy==1.9.0
|
||||
lazy-object-proxy==1.10.0
|
||||
mccabe==0.7.0
|
||||
mypy-extensions==1.0.0
|
||||
nodeenv==1.8.0
|
||||
packaging==23.2
|
||||
pathspec==0.12.1
|
||||
platformdirs==4.1.0
|
||||
pluggy==1.3.0
|
||||
platformdirs==4.2.0
|
||||
pluggy==1.4.0
|
||||
py==1.11.0
|
||||
pycodestyle==2.11.1
|
||||
PyJWT==2.8.0
|
||||
pyparsing==3.1.1
|
||||
python-dateutil==2.8.2
|
||||
python-dotenv==1.0.0
|
||||
python-dotenv==1.0.1
|
||||
PyYAML==6.0.1
|
||||
requests==2.31.0
|
||||
requests-toolbelt==1.0.0
|
||||
@ -37,7 +37,7 @@ six==1.16.0
|
||||
toml==0.10.2
|
||||
tomli==2.0.1
|
||||
tomlkit==0.12.3
|
||||
urllib3==2.1.0
|
||||
urllib3==2.2.0
|
||||
virtualenv==20.25.0
|
||||
webex-bot==0.4.1
|
||||
webexteamssdk==1.6.1
|
||||
|
Reference in New Issue
Block a user