From 76a29458c2f314af60af04353e0de0a141ef7763 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Thu, 16 May 2024 15:40:26 +0200 Subject: [PATCH 01/19] set fixed versions for renovatebot Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- .../pyproject.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/pyproject.toml b/mex-{{ cookiecutter.project_name }}/pyproject.toml index d08630c..f481e5a 100644 --- a/mex-{{ cookiecutter.project_name }}/pyproject.toml +++ b/mex-{{ cookiecutter.project_name }}/pyproject.toml @@ -9,15 +9,15 @@ urls = { Repository = "https://github.com/robert-koch-institut/mex-{{ cookiecutt requires-python = "<3.13,>=3.11" dependencies = [] optional-dependencies.dev = [ - "black>=24.4.2", - "ipdb>=0.13.13", - "mypy>=1.10.0", + "black==24.4.2", + "ipdb==0.13.13", + "mypy==1.10.0", "pytest-cov>=5.0.0", - "pytest-random-order>=1.1.1", - "pytest-xdist>=3.6.1", - "pytest>=8.2.0", - "ruff>=0.4.4", - "sphinx>=7.3.7", + "pytest-random-order==1.1.1", + "pytest-xdist==3.6.1", + "pytest==8.2.0", + "ruff==0.4.4", + "sphinx==7.3.7", ] [project.scripts] @@ -126,5 +126,5 @@ known-first-party = ["mex", "tests"] convention = "google" [build-system] -requires = ["pdm-backend>=2.3.0"] +requires = ["pdm-backend==2.3.0"] build-backend = "pdm.backend" From d119bf0d8a36daa944253e91314a5b1b0bc4c6de Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Mon, 27 May 2024 13:49:50 +0200 Subject: [PATCH 02/19] Update .pre-commit-config.yaml Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml b/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml index 8398fbe..67785b9 100644 --- a/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml +++ b/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml @@ -3,11 +3,11 @@ default_language_version: python: python3.11 repos: - repo: https://github.com/psf/black - rev: 24.3.0 + rev: 24.4.2 hooks: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.5 + rev: v0.4.5 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] @@ -28,7 +28,7 @@ repos: - id: fix-byte-order-marker name: byte-order - repo: https://github.com/pdm-project/pdm - rev: 2.13.2 + rev: 2.15.3 hooks: - id: pdm-lock-check name: pdm From 6e99c296ff9b47a43b0cd58154a64b5960e702b6 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Mon, 27 May 2024 13:51:35 +0200 Subject: [PATCH 03/19] Update pyproject.toml Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- mex-{{ cookiecutter.project_name }}/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/pyproject.toml b/mex-{{ cookiecutter.project_name }}/pyproject.toml index f481e5a..a8c0cd6 100644 --- a/mex-{{ cookiecutter.project_name }}/pyproject.toml +++ b/mex-{{ cookiecutter.project_name }}/pyproject.toml @@ -15,8 +15,8 @@ optional-dependencies.dev = [ "pytest-cov>=5.0.0", "pytest-random-order==1.1.1", "pytest-xdist==3.6.1", - "pytest==8.2.0", - "ruff==0.4.4", + "pytest==8.2.1", + "ruff==0.4.5", "sphinx==7.3.7", ] From 4b8112f141707ac45b3a29793a9516cdd9d1a7a8 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Mon, 27 May 2024 13:52:17 +0200 Subject: [PATCH 04/19] Update requirements.txt Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- mex-{{ cookiecutter.project_name }}/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mex-{{ cookiecutter.project_name }}/requirements.txt b/mex-{{ cookiecutter.project_name }}/requirements.txt index 712004a..21929f1 100644 --- a/mex-{{ cookiecutter.project_name }}/requirements.txt +++ b/mex-{{ cookiecutter.project_name }}/requirements.txt @@ -1,4 +1,4 @@ cruft==2.15.0 -pdm==2.15.2 +pdm==2.15.3 pre-commit==3.7.1 wheel==0.43.0 From d4a51f2e4f20827ddaabe9a2da83237ec00de2e0 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Wed, 29 May 2024 15:29:48 +0200 Subject: [PATCH 05/19] Update .pre-commit-config.yaml Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml b/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml index 67785b9..3073ec1 100644 --- a/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml +++ b/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml @@ -7,7 +7,7 @@ repos: hooks: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.5 + rev: v0.4.6 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From 65541a7d7f7a2ecb4f4995806ed9cc8fc4bf2a89 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Wed, 29 May 2024 15:30:03 +0200 Subject: [PATCH 06/19] Update pyproject.toml Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- mex-{{ cookiecutter.project_name }}/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mex-{{ cookiecutter.project_name }}/pyproject.toml b/mex-{{ cookiecutter.project_name }}/pyproject.toml index a8c0cd6..8277933 100644 --- a/mex-{{ cookiecutter.project_name }}/pyproject.toml +++ b/mex-{{ cookiecutter.project_name }}/pyproject.toml @@ -16,7 +16,7 @@ optional-dependencies.dev = [ "pytest-random-order==1.1.1", "pytest-xdist==3.6.1", "pytest==8.2.1", - "ruff==0.4.5", + "ruff==0.4.6", "sphinx==7.3.7", ] From fc8e227ac2c34e00ea43da9bcb25730525ed661e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henning=20Schiebenh=C3=B6fer?= Date: Thu, 30 May 2024 09:40:23 +0200 Subject: [PATCH 07/19] fix release job name --- .../.github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml b/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml index 11a301a..30e1757 100644 --- a/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml +++ b/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml @@ -1,6 +1,6 @@ name: Release -run-name: release version {% raw %}${{ inputs.version }} by @${{ github.actor }}{% endraw %} +run-name: bump {% raw %}${{ inputs.version }} version by @${{ github.actor }}{% endraw %} on: workflow_dispatch: From 030146f2c807fe2ed0119d46088165af7892b1d0 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:08:30 +0200 Subject: [PATCH 08/19] Update .gitignore Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- .gitignore | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index bc0e810..bb9d1eb 100644 --- a/.gitignore +++ b/.gitignore @@ -7,25 +7,27 @@ __pycache__/ *.so # Distribution / packaging +.eggs/ +.installed.cfg +.pdm-build +.pdm-python .Python +.web/ +*.egg +*.egg-info/ build/ develop-eggs/ dist/ downloads/ eggs/ -.eggs/ -.pdm-python lib/ lib64/ +MANIFEST parts/ sdist/ +share/python-wheels/ var/ wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST # PyInstaller *.manifest From 5331057124c3e65b486f814abe4fc0bd7d47c5b2 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:36:20 +0200 Subject: [PATCH 09/19] Update .dockerignore Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- mex-{{ cookiecutter.project_name }}/.dockerignore | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/.dockerignore b/mex-{{ cookiecutter.project_name }}/.dockerignore index a982909..3650b7f 100644 --- a/mex-{{ cookiecutter.project_name }}/.dockerignore +++ b/mex-{{ cookiecutter.project_name }}/.dockerignore @@ -7,24 +7,27 @@ __pycache__/ *.so # Distribution / packaging +.eggs/ +.installed.cfg +.pdm-build +.pdm-python .Python +.web/ +*.egg +*.egg-info/ build/ develop-eggs/ dist/ downloads/ eggs/ -.eggs/ lib/ lib64/ +MANIFEST parts/ sdist/ +share/python-wheels/ var/ wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST # PyInstaller *.manifest From a5c58038aa96fa7068c8fd1b6d4477ce23a9c281 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:36:32 +0200 Subject: [PATCH 10/19] Update .gitignore Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- mex-{{ cookiecutter.project_name }}/.gitignore | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/.gitignore b/mex-{{ cookiecutter.project_name }}/.gitignore index bc0e810..bb9d1eb 100644 --- a/mex-{{ cookiecutter.project_name }}/.gitignore +++ b/mex-{{ cookiecutter.project_name }}/.gitignore @@ -7,25 +7,27 @@ __pycache__/ *.so # Distribution / packaging +.eggs/ +.installed.cfg +.pdm-build +.pdm-python .Python +.web/ +*.egg +*.egg-info/ build/ develop-eggs/ dist/ downloads/ eggs/ -.eggs/ -.pdm-python lib/ lib64/ +MANIFEST parts/ sdist/ +share/python-wheels/ var/ wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST # PyInstaller *.manifest From d9624fa39537c4772501b760eb8d86727811e50d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henning=20Schiebenh=C3=B6fer?= Date: Thu, 6 Jun 2024 10:08:08 +0200 Subject: [PATCH 11/19] remove non-functional branch restriction --- .../.github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml b/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml index 30e1757..f6799be 100644 --- a/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml +++ b/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml @@ -4,7 +4,6 @@ run-name: bump {% raw %}${{ inputs.version }} version by @${{ github.actor }}{% on: workflow_dispatch: - branches: ["main"] inputs: version: type: choice From b908169ea70fc90aa579b69b6859e5d7f8086f0f Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt Date: Thu, 6 Jun 2024 15:36:43 +0200 Subject: [PATCH 12/19] bump versions --- mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml | 4 ++-- mex-{{ cookiecutter.project_name }}/pyproject.toml | 4 ++-- mex-{{ cookiecutter.project_name }}/requirements.txt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml b/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml index 3073ec1..784ff9e 100644 --- a/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml +++ b/mex-{{ cookiecutter.project_name }}/.pre-commit-config.yaml @@ -7,7 +7,7 @@ repos: hooks: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.6 + rev: v0.4.8 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] @@ -28,7 +28,7 @@ repos: - id: fix-byte-order-marker name: byte-order - repo: https://github.com/pdm-project/pdm - rev: 2.15.3 + rev: 2.15.4 hooks: - id: pdm-lock-check name: pdm diff --git a/mex-{{ cookiecutter.project_name }}/pyproject.toml b/mex-{{ cookiecutter.project_name }}/pyproject.toml index 8277933..93e02ca 100644 --- a/mex-{{ cookiecutter.project_name }}/pyproject.toml +++ b/mex-{{ cookiecutter.project_name }}/pyproject.toml @@ -15,8 +15,8 @@ optional-dependencies.dev = [ "pytest-cov>=5.0.0", "pytest-random-order==1.1.1", "pytest-xdist==3.6.1", - "pytest==8.2.1", - "ruff==0.4.6", + "pytest==8.2.2", + "ruff==0.4.8", "sphinx==7.3.7", ] diff --git a/mex-{{ cookiecutter.project_name }}/requirements.txt b/mex-{{ cookiecutter.project_name }}/requirements.txt index 2e0fd34..bd9a68c 100644 --- a/mex-{{ cookiecutter.project_name }}/requirements.txt +++ b/mex-{{ cookiecutter.project_name }}/requirements.txt @@ -1,5 +1,5 @@ cruft==2.15.0 mex-release @ git+https://github.com/robert-koch-institut/mex-release.git -pdm==2.15.3 +pdm==2.15.4 pre-commit==3.7.1 wheel==0.43.0 From b8728862bcc0ec531f6e96b6074f70215223c9da Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt Date: Thu, 6 Jun 2024 15:37:01 +0200 Subject: [PATCH 13/19] drop npm renovate support --- mex-{{ cookiecutter.project_name }}/renovate.json | 1 - renovate.json | 1 - 2 files changed, 2 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/renovate.json b/mex-{{ cookiecutter.project_name }}/renovate.json index 29bddbf..51ce8b8 100644 --- a/mex-{{ cookiecutter.project_name }}/renovate.json +++ b/mex-{{ cookiecutter.project_name }}/renovate.json @@ -3,7 +3,6 @@ "enabledManagers": [ "github-actions", "html", - "npm", "pep621", "pip_requirements" ], diff --git a/renovate.json b/renovate.json index 29bddbf..51ce8b8 100644 --- a/renovate.json +++ b/renovate.json @@ -3,7 +3,6 @@ "enabledManagers": [ "github-actions", "html", - "npm", "pep621", "pip_requirements" ], From 5f3c8f436fb0d00dc61bdee17ed4ff929a418f05 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt Date: Thu, 6 Jun 2024 15:37:27 +0200 Subject: [PATCH 14/19] configure commit signing for release pipeline --- .../.github/workflows/release.yml | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml b/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml index f6799be..8e68e56 100644 --- a/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml +++ b/mex-{{ cookiecutter.project_name }}/.github/workflows/release.yml @@ -54,8 +54,27 @@ jobs: - name: Install requirements run: make setup + - name: Configure git + env: + {% raw %}SIGNING_KEY: ${{ secrets.SIGNING_KEY }}{% endraw %} + {% raw %}SIGNING_PUB: ${{ secrets.SIGNING_PUB }}{% endraw %} + run: | + {% raw -%} + eval "$(ssh-agent -s)" + install --directory ~/.ssh --mode 700 + base64 -d <<< '${{ secrets.SIGNING_KEY }}' > ~/.ssh/mex + base64 -d <<< '${{ secrets.SIGNING_PUB }}' > ~/.ssh/mex.pub + chmod 600 ~/.ssh/* + ssh-add ~/.ssh/mex + git config --local user.email ${{ vars.MEX_BOT_EMAIL }} + git config --local user.name ${{ vars.MEX_BOT_USER }} + git config --local gpg.format ssh + git config --local user.signingkey ~/.ssh/mex.pub + git config --local commit.gpgsign true + {%- endraw %} + - name: Release new version + env: + {% raw %}GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}{% endraw %} run: | - git config --global user.name 'RKIMetadataExchange' - git config --global user.email 'mex@rki.de' pdm release {% raw %}${{ inputs.version }}{% endraw %} From a25b561d1328d468e0a6a9d52f9cace65e0c6011 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt Date: Thu, 6 Jun 2024 15:40:42 +0200 Subject: [PATCH 15/19] Update changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c29570..871db1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - configure renovatebot for mex-template itself - pdm release plugin as additional requirement for template packages - github action for releasing a new version in template packages +- add `.web` folder to ignore files for reflex development +- add commit signing to release pipeline ### Changes @@ -22,9 +24,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +- drop npm support from renovate pipeline +- remove non-functional branch restriction from release pipeline + ### Fixed - fix `export-all` pdm script +- fix wording of release pipeline title ### Security From 81a4a8085af95e81a81c2c9620e751ca679e181d Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt Date: Thu, 6 Jun 2024 15:42:55 +0200 Subject: [PATCH 16/19] Update changelog again --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 871db1b..b2df012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - harmonize git and docker ignore files - update requirements, actions and sample dependencies +- set fixed versions in toml for renovatebot ### Deprecated From 694678055a07fd70cf760ff67ec36c8c3d830c66 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt Date: Tue, 11 Jun 2024 09:46:36 +0200 Subject: [PATCH 17/19] Update pdm aliases --- mex-{{ cookiecutter.project_name }}/pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mex-{{ cookiecutter.project_name }}/pyproject.toml b/mex-{{ cookiecutter.project_name }}/pyproject.toml index 93e02ca..a91095b 100644 --- a/mex-{{ cookiecutter.project_name }}/pyproject.toml +++ b/mex-{{ cookiecutter.project_name }}/pyproject.toml @@ -40,10 +40,10 @@ plugins = ["pydantic.mypy"] distribution = true [tool.pdm.scripts] -update-all = { cmd = "pdm update --group :all --update-eager --save-minimum" } -lock-all = { cmd = "pdm lock --group :all" } -install-all = { cmd = "pdm install --group :all" } -export-all = { cmd = "pdm export --group :all -f requirements" } +update-all = { cmd = "pdm update --group :all --update-all --save-compatible" } +lock-all = { cmd = "pdm lock --group :all --refresh" } +install-all = { cmd = "pdm install --group :all --no-editable --no-lock" } +export-all = { cmd = "pdm export --group :all --no-hashes -f requirements" } apidoc = { cmd = "pdm run sphinx-apidoc -f -o docs/source mex" } sphinx = { cmd = "pdm run sphinx-build -aE -b dirhtml docs docs/dist" } doc = { composite = ["apidoc", "sphinx"] } From 5d9a7ee3c57cc9f2ff0281ca9386e926e90b9348 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt Date: Tue, 11 Jun 2024 09:46:52 +0200 Subject: [PATCH 18/19] Update cl --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2df012..5edcdf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- fix `export-all` pdm script +- fix `export-all` and `install-all` pdm scripts - fix wording of release pipeline title ### Security From 7b45cae3a65243656eb228ede48a3bce0d39d8ed Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt Date: Tue, 11 Jun 2024 09:47:01 +0200 Subject: [PATCH 19/19] Update action version --- .github/workflows/renovatebot.yml | 2 +- .../.github/workflows/renovatebot.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/renovatebot.yml b/.github/workflows/renovatebot.yml index 9519228..5f3d533 100644 --- a/.github/workflows/renovatebot.yml +++ b/.github/workflows/renovatebot.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 1 - name: Run renovatebot - uses: renovatebot/github-action@v40.1.11 + uses: renovatebot/github-action@v40.1.12 env: RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.GPG_SIGNING_KEY }} RENOVATE_REPOSITORIES: "robert-koch-institut/mex-template" diff --git a/mex-{{ cookiecutter.project_name }}/.github/workflows/renovatebot.yml b/mex-{{ cookiecutter.project_name }}/.github/workflows/renovatebot.yml index 4c2f823..0595234 100644 --- a/mex-{{ cookiecutter.project_name }}/.github/workflows/renovatebot.yml +++ b/mex-{{ cookiecutter.project_name }}/.github/workflows/renovatebot.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 1 - name: Run renovatebot - uses: renovatebot/github-action@v40.1.11 + uses: renovatebot/github-action@v40.1.12 env: RENOVATE_GIT_PRIVATE_KEY: {% raw %}${{ secrets.GPG_SIGNING_KEY }}{% endraw %} RENOVATE_REPOSITORIES: "robert-koch-institut/mex-{{ cookiecutter.project_name }}"