Skip to content

Commit d575d62

Browse files
committed
S3671: updated runners in the yaml file
1 parent 7ec8e8b commit d575d62

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
publish:
11-
runs-on: [valstro-runner, linux-small]
11+
runs-on: ubuntu-latest
1212
permissions:
1313
contents: read
1414
packages: write
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/setup-java@v3
1818
with:
1919
java-version: '17'
20-
distribution: 'adopt'
20+
distribution: 'temurin'
2121
- name: Build
2222
run: mvn --batch-mode --update-snapshots package
2323
- name: Publish

.github/workflows/test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: [valstro-runner, linux-small]
11+
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14+
- uses: actions/setup-java@v3
15+
with:
16+
java-version: '17'
17+
distribution: 'temurin'
1418
- name: Test
1519
run: mvn --batch-mode --update-snapshots test

0 commit comments

Comments
 (0)