Skip to content

Commit

Permalink
Merge pull request #157 from eliasnogueira/updates
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
eliasnogueira authored May 27, 2024
2 parents a583130 + 1b06da4 commit bb4486f
Show file tree
Hide file tree
Showing 8 changed files with 349 additions and 441 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ jobs:
java-version: 22

- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build
run: mvn clean compile
run: mvn -q clean compile

- name: Test
run: mvn test
run: mvn -q test

- name: Publish artifact on GitHub Packages
run: mvn deploy -DskipTests
run: mvn -q deploy -DskipTests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
java-version: 22

- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand All @@ -28,4 +28,4 @@ jobs:
run: mvn clean compile

- name: Test
run: mvn test
run: mvn -q test
Binary file removed .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
wrapperVersion=3.3.2
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.7/apache-maven-3.9.7-bin.zip
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.13.5] - 10-044-2024
## [1.13.6] - 27-06-2024

### Changed

- Updated Maven Wrapper
- Bump actions/cache
- Updated the following libraries
- `spring-boot-starter-parent -> 3.3.0`
- `hibernate-jpamodelgen.version -> 6.5.2.Final`
- `junit.version -> 5.11.0-M2`
- `assertj.version -> 3.26.0`
- `datafaker.version -> 2.2.2`
- `testcontainers.version -> 1.19.8`

## [1.13.5] - 10-0442024

### Changed

Expand Down
Loading

0 comments on commit bb4486f

Please sign in to comment.