diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 000000000..b806e0788 Binary files /dev/null and b/.DS_Store differ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5541bc250..6038accf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v4 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 # Update to the latest version if available with: distribution: 'adopt' java-version: '17' @@ -24,7 +24,7 @@ jobs: run: mvn clean install - name: Upload Build Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-artifacts path: target/** @@ -33,7 +33,7 @@ jobs: run: mvn test - name: Upload Test Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-reports path: target/surefire-reports/** @@ -42,7 +42,7 @@ jobs: run: mvn jacoco:report - name: Upload Code Coverage Report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: code-coverage-report path: target/site/jacoco/** diff --git a/src/.DS_Store b/src/.DS_Store new file mode 100644 index 000000000..48746a7df Binary files /dev/null and b/src/.DS_Store differ