-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: upgrade to sodar core v1 (#1973) #2010
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- 6379:6379 | ||
|
||
postgres: | ||
image: postgres:14 | ||
image: postgres:16 | ||
env: | ||
POSTGRES_DB: varfish_web | ||
POSTGRES_USER: varfish_web | ||
|
@@ -119,7 +119,7 @@ jobs: | |
with: | ||
# We need to fix the patch version here otherwise, snapshot tests | ||
# with randomness will / may fail. | ||
python-version: "3.10.13" | ||
python-version: "3.11" | ||
|
||
- name: Install pip and Pipenv | ||
run: | | ||
|
@@ -171,7 +171,7 @@ jobs: | |
- name: Install Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
python-version: "3.11" | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
@@ -182,7 +182,7 @@ jobs: | |
- name: Install Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
python-version: "3.11" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove duplicate Python setup step. This step is a duplicate of the Python setup performed at line 174. To simplify the workflow and improve maintainability, consider removing this redundant step. Apply this diff to remove the duplicate step: - - name: Install Python
- uses: actions/setup-python@v5
- with:
- python-version: "3.11"
|
||
|
||
- name: Install pip and Pipenv | ||
run: pip install pip pipenv | ||
|
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Update remaining PostgreSQL references to version 16
The PostgreSQL version has been upgraded to 16 in
.github/workflows/main.yml
, but references to version 14 still exist in the following files:CHANGELOG.md
utils/docker/Dockerfile
Please update all PostgreSQL references to ensure consistency and compatibility across the codebase.
🔗 Analysis chain
Verify compatibility with PostgreSQL 16.
The PostgreSQL image has been upgraded from version 14 to 16. This is a major version upgrade that may introduce breaking changes.
Please ensure that:
Run the following script to check for any PostgreSQL version-specific code or comments in the codebase:
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 518
Script:
Length of output: 166