Skip to content

Commit

Permalink
feature/maint 20240909 (#71)
Browse files Browse the repository at this point in the history
# PR Context
<!-- Additional info for the reviewer

Don't forget to explain how you tested the changes, i.e. by providing a
link
to a fork or sample repository where the changes were tried out. -->

# Added
<!-- New features and interfaces -->

# Changes
- update requirements and github-actions

# Deprecated
<!-- Soon-to-be removed features -->

# Removed
<!-- Definitely removed features -->

# Fixed
- fix missing dependency from containerize to release job

# Security
<!-- Fixed vulnerabilities -->

---------

Signed-off-by: Nicolas Drebenstedt <[email protected]>
Co-authored-by: RKIMetadataExchange <[email protected]>
  • Loading branch information
cutoffthetop and RKIMetadataExchange authored Sep 13, 2024
1 parent a782ed7 commit cee2058
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/renovatebot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 1

- name: Run renovatebot
uses: renovatebot/[email protected].5
uses: renovatebot/[email protected].7
env:
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.GPG_SIGNING_KEY }}
RENOVATE_REPOSITORIES: "robert-koch-institut/mex-template"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
containerize:
runs-on: ubuntu-latest
timeout-minutes: 10
needs: release
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -124,9 +125,9 @@ jobs:

- name: 'Build Inventory Image'
run: |
docker build .
--tag ghcr.io/robert-koch-institut/mex-{{ cookiecutter.project_name }}:latest
--tag ghcr.io/robert-koch-institut/mex-{{ cookiecutter.project_name }}:{% raw %}${{ github.sha }}{% endraw %}
docker build . \
--tag ghcr.io/robert-koch-institut/mex-{{ cookiecutter.project_name }}:latest \
--tag ghcr.io/robert-koch-institut/mex-{{ cookiecutter.project_name }}:{% raw %}${{ github.sha }}{% endraw %} \
--tag ghcr.io/robert-koch-institut/mex-{{ cookiecutter.project_name }}:{% raw %}${{ needs.release.outputs.tag }}{% endraw %}
docker push ghcr.io/robert-koch-institut/mex-{{ cookiecutter.project_name }}:latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 1

- name: Run renovatebot
uses: renovatebot/[email protected].5
uses: renovatebot/[email protected].7
env:
RENOVATE_GIT_PRIVATE_KEY: {% raw %}${{ secrets.GPG_SIGNING_KEY }}{% endraw %}
RENOVATE_REPOSITORIES: "robert-koch-institut/mex-{{ cookiecutter.project_name }}"
Expand Down
2 changes: 1 addition & 1 deletion mex-{{ cookiecutter.project_name }}/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cruft==2.15.0
mex-release @ git+https://github.com/robert-koch-institut/mex-release.git
pdm==2.17.3
pdm==2.18.1
pre-commit==3.8.0
wheel==0.44.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cruft==2.15.0
mex-release @ git+https://github.com/robert-koch-institut/mex-release.git
pdm==2.17.3
pdm==2.18.1
pre-commit==3.8.0
wheel==0.44.0

0 comments on commit cee2058

Please sign in to comment.