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
7 changes: 6 additions & 1 deletion .github/workflows/merge-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
publish-snapshot:
name: publish to oss sonatype & push image

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

permissions:
contents: read
Expand All @@ -44,6 +44,11 @@ jobs:
architecture: x64
java-version: 11

- name: Set up Maven
uses: stCarolas/setup-maven@v4.5
with:
maven-version: 3.8.8

- name: maven-settings-xml-action
uses: whelk-io/maven-settings-xml-action@v14
if: ${{ github.event.repository.fork == false }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on: [pull_request]
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
Expand All @@ -35,6 +35,11 @@ jobs:
java-version: '11'
distribution: 'adopt'

- name: Set up Maven
uses: stCarolas/setup-maven@v4.5
with:
maven-version: 3.8.8

- name: maven-settings-xml-action
uses: whelk-io/maven-settings-xml-action@v14
with:
Expand Down