Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/automated-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
run-tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
env:
# LD_PRELOAD: /lib/x86_64-linux-gnu/libSegFault.so
# SEGFAULT_SIGNALS: all
Expand Down Expand Up @@ -55,8 +55,8 @@ jobs:
- name: Install linux dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y postgresql-client --no-install-recommends ca-certificates || apt-get install -y --no-install-recommends ca-certificates
sudo update-ca-certificates || update-ca-certificates
sudo apt-get install -y postgresql-client ca-certificates
sudo update-ca-certificates
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
__license__ = """
SPDX-FileCopyrightText: 2025 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.
SPDX-FileCopyrightText: 2025 Martin Glauer <https://github.com/MGlauer> © Otto-von-Guericke-Universität Magdeburg
SPDX-FileCopyrightText: 2025 Martin Glauer <https://github.com/MGlauer> © Otto-von-Guericke-Universität Magdeburg
Expand Down
Loading