Skip to content

Commit 340084b

Browse files
authored
Merge pull request #803 from deNBI/staging
Staging
2 parents 841f5d8 + 3538a09 commit 340084b

19 files changed

+37
-28
lines changed

.github/workflows/build_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ jobs:
88
uses: rokroskar/[email protected]
99
env:
1010
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
11-
- uses: actions/checkout@v4.2.2
11+
- uses: actions/checkout@v5.0.0
1212
- run: docker build --no-cache .

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4.2.2
38+
uses: actions/checkout@v5.0.0
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

1515
- name: Set up Python 3.11
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.11
18+
python-version: 3.13
1919

2020
- name: Install dependencies
2121
run: |

.github/workflows/master-protection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: rokroskar/[email protected]
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17-
- uses: actions/checkout@v4.2.2
17+
- uses: actions/checkout@v5.0.0
1818

1919
- name: Check Tag
2020
run: |

.github/workflows/publish_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: rokroskar/[email protected]
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18-
- uses: actions/checkout@v4.2.2
18+
- uses: actions/checkout@v5.0.0
1919
- name: Extract branch name
2020
shell: bash
2121
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"

.github/workflows/release_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Get the version
1212
id: get_version
1313
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
14-
- uses: actions/checkout@v4.2.2
14+
- uses: actions/checkout@v5.0.0
1515
- name: Set up Docker Buildx
1616
uses: docker/setup-buildx-action@v3
1717
- name: Login to Quay.io

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ default_stages: [ commit ]
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v5.0.0
6+
rev: v6.0.0
77
hooks:
88
- id: trailing-whitespace
99
- id: end-of-file-fixer

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.5
1+
FROM python:3.13.6
22
RUN echo "deb https://deb.debian.org/debian/ stable main" > /etc/apt/sources.list
33
RUN apt-get update -y \
44
&& apt-get install -y build-essential python3-openstackclient vim\

Dockerfile-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.5
1+
FROM python:3.13.6
22
WORKDIR /code
33

44
# Copy all requirements files at once

PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
Try to fulfill the following points before the Pull Request is merged:
22

3+
- [ ] Give a meaningfull description for the PR
34
- [ ] The PR is reviewed by one of the team members.
45
- [ ] If a linting PR exists, it must be merged before this PR is allowed to be merged.
6+
- [ ] It must be checked if anything in the Readme must be adjusted (development-, production-, setup).
7+
- [ ] If the requirements.txt have changed, check if the patches still work
8+
- [ ] It must be checked if any section in the wiki (https://simplevm.denbi.de/wiki/) should be adjusted.
59
- [ ] If the PR is merged in the master then a release should be be made.
610
- [ ] If the new code is readable, if not it should be well commented
711

12+
13+
**For any changes of the code please consider:**
14+
- [ ] Cover the changes with corresponding unit tests
15+
816
For releases only:
917

1018
- [ ] If the review of this PR is approved and the PR is followed by a release then the .env file
1119
in the cloud-portal repo should also be updated.
1220
- [ ] If you are making a release then please sum up the changes since the last release on the release page using the [clog](https://github.com/clog-tool/clog-cli) tool with `clog -F`
21+

0 commit comments

Comments
 (0)