Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.
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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout source code
uses: actions/checkout@v2
Expand All @@ -36,7 +36,7 @@ jobs:
test-command: 'mvn -B -U clean test'

deploy-test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/main'
needs: test
concurrency: deploy-test
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
project-name: ${{ env.PROJECT_NAME }}

deploy-prod:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/prod'
needs: test
concurrency: deploy-prod
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: push

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout source code
uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Replace all `ToDo` notes with the appropriate names, descriptions and commands.

# ToDo: Project Name

[![REUSE Compliance](https://github.com/noi-techpark/java-boilerplate/actions/workflows/reuse.yml/badge.svg)](https://github.com/noi-techpark/odh-docs/wiki/REUSE#badges)
[![REUSE Compliance](https://github.com/noi-techpark/java-boilerplate/actions/workflows/reuse.yml/badge.svg)](https://github.com/noi-techpark/opendatahub-docs/wiki/REUSE)

ToDo: Description of the project.

Expand Down Expand Up @@ -39,7 +39,7 @@ on your local machine for development and testing purposes.
To build the project, the following prerequisites must be met:

- ToDo: Check the prerequisites
- Java JDK 1.8 or higher (e.g. [OpenJDK](https://openjdk.java.net/))
- Java JDK 1.8 or higher (e.g. [OpenJDK](https://openjdk.org/))
- [Maven](https://maven.apache.org/) 3.x
- [PostgreSQL](https://www.postgresql.org/) 11

Expand All @@ -50,7 +50,7 @@ If you want to run the application using [Docker](https://www.docker.com/), the
Get a copy of the repository:

```bash
ToDo: git clone https://github.com/noi-techpark/project-name.git
ToDo: git clone https://github.com/noi-techpark/project-name
```

Change directory:
Expand Down Expand Up @@ -120,7 +120,7 @@ ToDo: For support, please contact [info@opendatahub.com](mailto:info@opendatahub
### Contributing

If you'd like to contribute, please follow our [Getting
Started](https://github.com/noi-techpark/odh-docs/wiki/Contributor-Guidelines:-Getting-started)
Started](https://github.com/noi-techpark/opendatahub-docs/wiki/Contributor-Guidelines:-Getting-started)
instructions.

### Documentation
Expand All @@ -137,7 +137,7 @@ The code in this project is licensed under the GNU AFFERO GENERAL PUBLIC LICENSE

### REUSE

This project is [REUSE](https://reuse.software) compliant, more information about the usage of REUSE in NOI Techpark repositories can be found [here](https://github.com/noi-techpark/odh-docs/wiki/Guidelines-for-developers-and-licenses#guidelines-for-contributors-and-new-developers).
This project is [REUSE](https://reuse.software) compliant, more information about the usage of REUSE in NOI Techpark repositories can be found [here](https://github.com/noi-techpark/opendatahub-docs/wiki/Guidelines-for-developers-and-licenses).

Since the CI for this project checks for REUSE compliance you might find it useful to use a pre-commit hook checking for REUSE compliance locally. The [pre-commit-config](.pre-commit-config.yaml) file in the repository root is already configured to check for REUSE compliance with help of the [pre-commit](https://pre-commit.com) tool.

Expand Down