From f86f84db434c2b329d48959f4d929101c2cdb0a7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 15:33:56 +0000 Subject: [PATCH 01/11] fix(deps): update dependency lazy-object-proxy to v1.10.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d3a1619..926e759 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ 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 -- 2.45.2 From 6b09b4a1a6f5704541df5b8548b922433bb58675 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sat, 30 Dec 2023 13:32:12 +0000 Subject: [PATCH 02/11] Pass SNYK_TOKEN to CI --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce3eb9f..83cd7ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,10 @@ jobs: 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.45.2 From 60233230b1b60e225ae47109fed9dd61f594521e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 31 Dec 2023 08:03:42 +0000 Subject: [PATCH 03/11] fix(deps): update dependency attrs to v23.2.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 926e759..7116b39 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ appdirs==1.4.4 astroid==3.0.2 -attrs==23.1.0 +attrs==23.2.0 autopep8==2.0.4 backoff==2.2.1 certifi==2023.11.17 -- 2.45.2 From f6c66b593f66feb1ad734b3f12f81feb7edf1a51 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 16:04:37 +0000 Subject: [PATCH 04/11] fix(deps): update dependency pluggy to v1.4.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7116b39..3129c66 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,7 +23,7 @@ nodeenv==1.8.0 packaging==23.2 pathspec==0.12.1 platformdirs==4.1.0 -pluggy==1.3.0 +pluggy==1.4.0 py==1.11.0 pycodestyle==2.11.1 PyJWT==2.8.0 -- 2.45.2 From 1f1a7c18b84cd60dab1a4a81732ee32b83a01cf7 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Wed, 24 Jan 2024 20:09:24 +0000 Subject: [PATCH 05/11] Add Dependabot --- CODEOWNERS => .github/CODEOWNERS | 0 .github/dependabot.yml | 44 ++++++++++++++++++++++++++ renovate.json => .github/renovate.json | 0 .github/workflows/ci.yml | 5 +-- .github/workflows/release.yml | 2 +- 5 files changed, 48 insertions(+), 3 deletions(-) rename CODEOWNERS => .github/CODEOWNERS (100%) create mode 100644 .github/dependabot.yml rename renovate.json => .github/renovate.json (100%) diff --git a/CODEOWNERS b/.github/CODEOWNERS similarity index 100% rename from CODEOWNERS rename to .github/CODEOWNERS diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4fcea16 --- /dev/null +++ b/.github/dependabot.yml @@ -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" \ No newline at end of file diff --git a/renovate.json b/.github/renovate.json similarity index 100% rename from renovate.json rename to .github/renovate.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83cd7ec..0927b1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,8 +6,9 @@ on: - "README.md" - "LICENSE.md" - ".gitignore" - - "CODEOWNERS" - - "renovate.json" + - ".github/CODEOWNERS" + - ".github/renovate.json" + - ".github/dependabot.yml" jobs: pythonci: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94c9b22..5d54b68 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,5 +48,5 @@ jobs: with: url: ${{ secrets.PORTAINER_WEBHOOK_URL }} method: POST - timeout: 30000 + timeout: 60000 preventFailureOnNoResponse: "true" -- 2.45.2 From 86c978297fa3f6f1ce7efadf2a86d6dbf35ec2f0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:09:39 +0000 Subject: [PATCH 06/11] fix(deps): update dependency python-dotenv to v1.0.1 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3129c66..e6c2bfa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -29,7 +29,7 @@ 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 -- 2.45.2 From 6fe11e7220ca737145f0db7623db446f82025384 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Jan 2024 02:52:02 +0000 Subject: [PATCH 07/11] fix(deps): update dependency dill to v0.3.8 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e6c2bfa..36c989b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ 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 -- 2.45.2 From 975541fb397f07f171f46b8215adc9c3de1f6cc1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 04:43:07 +0000 Subject: [PATCH 08/11] fix(deps): update dependency platformdirs to v4.2.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 36c989b..e18ac30 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,7 +22,7 @@ mypy-extensions==1.0.0 nodeenv==1.8.0 packaging==23.2 pathspec==0.12.1 -platformdirs==4.1.0 +platformdirs==4.2.0 pluggy==1.4.0 py==1.11.0 pycodestyle==2.11.1 -- 2.45.2 From 0988c58c644a3aad8d6c4a34e0516327653d18ac Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 08:55:45 +0000 Subject: [PATCH 09/11] fix(deps): update dependency urllib3 to v2.2.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e18ac30..48a8422 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 -- 2.45.2 From 87079195ad48f8fae417fafab57af838583c1fd1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 02:03:28 +0000 Subject: [PATCH 10/11] fix(deps): update dependency certifi to v2024 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 48a8422..a98faa6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ astroid==3.0.2 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 -- 2.45.2 From 2e5281ba3ee195907aae664ed95c3450e1d634f9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 15:31:54 +0000 Subject: [PATCH 11/11] fix(deps): update dependency astroid to v3.0.3 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a98faa6..4f40088 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ appdirs==1.4.4 -astroid==3.0.2 +astroid==3.0.3 attrs==23.2.0 autopep8==2.0.4 backoff==2.2.1 -- 2.45.2