Skip to content

Commit

Permalink
upgrade actions/setup-java
Browse files Browse the repository at this point in the history
  • Loading branch information
baszoetekouw committed Dec 17, 2024
1 parent da0ecb2 commit 5e5b5fc
Showing 1 changed file with 38 additions and 37 deletions.
75 changes: 38 additions & 37 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,42 +15,43 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb-version: [4.4]
mongodb-version: [ 4.4 ]

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '16'

- uses: supercharge/mongodb-github-action@1.11.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-replica-set: test-rs

- uses: actions/setup-java@v1
with:
java-version: 21

- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up MySQL
uses: shogo82148/actions-setup-mysql@v1
with:
mysql-version: '8.0'
- run: |
mysql -uroot -h127.0.0.1 -e \
"CREATE DATABASE pdpserver CHARACTER SET utf8mb4 \
COLLATE utf8mb4_0900_ai_ci;"
- name: Build with Maven
run: mvn -B clean install

- name: Codecov
uses: codecov/codecov-action@v5.1.1
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '16'

- uses: supercharge/mongodb-github-action@1.11.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-replica-set: test-rs

- uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'

- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up MySQL
uses: shogo82148/actions-setup-mysql@v1
with:
mysql-version: '8.0'
- run: |
mysql -uroot -h127.0.0.1 -e \
"CREATE DATABASE pdpserver CHARACTER SET utf8mb4 \
COLLATE utf8mb4_0900_ai_ci;"
- name: Build with Maven
run: mvn -B clean install

- name: Codecov
uses: codecov/codecov-action@v5.1.1

0 comments on commit 5e5b5fc

Please sign in to comment.