diff --git a/.github/workflows/build-and-publish_library.yml b/.github/workflows/build-and-publish_library.yml index fa5b6d0..d68a867 100644 --- a/.github/workflows/build-and-publish_library.yml +++ b/.github/workflows/build-and-publish_library.yml @@ -21,12 +21,12 @@ jobs: (github.base_ref == 'master' && github.head_ref == 'develop') ) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Necesario para obtener todos los tags - name: Set up JDK 21 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '21' distribution: 'temurin' @@ -70,12 +70,12 @@ jobs: ) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Necesario para obtener todos los tags - name: Set up JDK 21 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '21' distribution: 'temurin' diff --git a/CHANGELOG.md b/CHANGELOG.md index 02c5a3a..b477307 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +* 5.1.10: + * **PACKAGE** :sparkler: : Fix build workflow + * 5.1.9: * **PACKAGE** :sparkler: : Fix build workflow diff --git a/build.gradle b/build.gradle index c8fe892..18d74a8 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group = 'dev.root101.commons' -version = '5.1.9' +version = '5.1.10' def environment = System.getenv('ENVIRONMENT') ?: 'prod'