From d0ddc15121d23202e9cff1f0997d491d61fe1c68 Mon Sep 17 00:00:00 2001 From: JuanfeSanahuja Date: Thu, 7 Mar 2024 16:14:40 +0100 Subject: [PATCH 1/5] Prepare new development branch release-5.0.x --- commons-datastore/commons-datastore-core/pom.xml | 2 +- commons-datastore/commons-datastore-mongodb/pom.xml | 2 +- commons-datastore/commons-datastore-solr/pom.xml | 2 +- commons-datastore/pom.xml | 2 +- commons-lib/pom.xml | 2 +- pom.xml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/commons-datastore/commons-datastore-core/pom.xml b/commons-datastore/commons-datastore-core/pom.xml index aa880ed3..0a06c304 100644 --- a/commons-datastore/commons-datastore-core/pom.xml +++ b/commons-datastore/commons-datastore-core/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons-datastore - 5.0.0 + 5.1.0-SNAPSHOT ../pom.xml diff --git a/commons-datastore/commons-datastore-mongodb/pom.xml b/commons-datastore/commons-datastore-mongodb/pom.xml index 81b7ca56..3ea804ec 100644 --- a/commons-datastore/commons-datastore-mongodb/pom.xml +++ b/commons-datastore/commons-datastore-mongodb/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons-datastore - 5.0.0 + 5.1.0-SNAPSHOT ../pom.xml diff --git a/commons-datastore/commons-datastore-solr/pom.xml b/commons-datastore/commons-datastore-solr/pom.xml index d50e0ec6..f55f28dc 100644 --- a/commons-datastore/commons-datastore-solr/pom.xml +++ b/commons-datastore/commons-datastore-solr/pom.xml @@ -22,7 +22,7 @@ org.opencb.commons commons-datastore - 5.0.0 + 5.1.0-SNAPSHOT ../pom.xml diff --git a/commons-datastore/pom.xml b/commons-datastore/pom.xml index 2519bb24..a1260d12 100644 --- a/commons-datastore/pom.xml +++ b/commons-datastore/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons - 5.0.0 + 5.1.0-SNAPSHOT ../pom.xml diff --git a/commons-lib/pom.xml b/commons-lib/pom.xml index 7fbeb7c4..785b7f53 100644 --- a/commons-lib/pom.xml +++ b/commons-lib/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons - 5.0.0 + 5.1.0-SNAPSHOT ../pom.xml diff --git a/pom.xml b/pom.xml index c784cff9..134f9391 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons - 5.0.0 + 5.1.0-SNAPSHOT pom OpenCB commons project From c1d71183bedf56c672ddf78326fdae9ff82aea34 Mon Sep 17 00:00:00 2001 From: JuanfeSanahuja Date: Wed, 20 Mar 2024 21:13:25 +0100 Subject: [PATCH 2/5] workflows: using artifact v4 instead v3 #TASK-5696 --- .github/workflows/build-java-app-workflow.yml | 2 +- .github/workflows/deploy-docker-hub-workflow.yml | 2 +- .github/workflows/deploy-python-workflow.yml | 2 +- .github/workflows/release-github-workflow.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-java-app-workflow.yml b/.github/workflows/build-java-app-workflow.yml index 2d9238a0..17ee18c3 100644 --- a/.github/workflows/build-java-app-workflow.yml +++ b/.github/workflows/build-java-app-workflow.yml @@ -35,7 +35,7 @@ jobs: fi - name: Maven Build (skip tests) run: mvn -T 2 clean install -DskipTests ${{ inputs.maven_opts }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: build-folder path: build diff --git a/.github/workflows/deploy-docker-hub-workflow.yml b/.github/workflows/deploy-docker-hub-workflow.yml index 3118d03f..2cc0c819 100644 --- a/.github/workflows/deploy-docker-hub-workflow.yml +++ b/.github/workflows/deploy-docker-hub-workflow.yml @@ -29,7 +29,7 @@ jobs: with: repository: ${{ inputs.repository }} ref: ${{ inputs.branch }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: build-folder path: build diff --git a/.github/workflows/deploy-python-workflow.yml b/.github/workflows/deploy-python-workflow.yml index a8f3634a..a2c80bd8 100644 --- a/.github/workflows/deploy-python-workflow.yml +++ b/.github/workflows/deploy-python-workflow.yml @@ -20,7 +20,7 @@ jobs: name: Deploy Python package in PyPI runs-on: ubuntu-22.04 steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ inputs.artifact }} with: name: ${{ inputs.artifact }} diff --git a/.github/workflows/release-github-workflow.yml b/.github/workflows/release-github-workflow.yml index b5bf4fd0..74324373 100644 --- a/.github/workflows/release-github-workflow.yml +++ b/.github/workflows/release-github-workflow.yml @@ -15,7 +15,7 @@ jobs: name: Create GitHub Release runs-on: ubuntu-22.04 steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ inputs.artifact }} with: name: ${{ inputs.artifact }} From 554109838479d64fa2a9a6e53e89c7d9e247a769 Mon Sep 17 00:00:00 2001 From: JuanfeSanahuja Date: Wed, 20 Mar 2024 21:34:14 +0100 Subject: [PATCH 3/5] workflows: using v4 instead v3 #TASK-5696 --- .github/workflows/build-java-app-workflow.yml | 4 ++-- .github/workflows/deploy-docker-hub-workflow.yml | 2 +- .github/workflows/deploy-maven-repository-workflow.yml | 6 +++--- .github/workflows/test-analysis.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-java-app-workflow.yml b/.github/workflows/build-java-app-workflow.yml index 17ee18c3..94a453ff 100644 --- a/.github/workflows/build-java-app-workflow.yml +++ b/.github/workflows/build-java-app-workflow.yml @@ -18,11 +18,11 @@ jobs: outputs: version: ${{ steps.get_project_version.outputs.version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: '10' - name: Set up JDK 8 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: '8' diff --git a/.github/workflows/deploy-docker-hub-workflow.yml b/.github/workflows/deploy-docker-hub-workflow.yml index 2cc0c819..72cfa648 100644 --- a/.github/workflows/deploy-docker-hub-workflow.yml +++ b/.github/workflows/deploy-docker-hub-workflow.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: "Checkout optional repo" - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: inputs.repository != '' && inputs.branch != '' with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/deploy-maven-repository-workflow.yml b/.github/workflows/deploy-maven-repository-workflow.yml index 9c4baca5..7ca626ff 100644 --- a/.github/workflows/deploy-maven-repository-workflow.yml +++ b/.github/workflows/deploy-maven-repository-workflow.yml @@ -21,11 +21,11 @@ jobs: name: Deploy to Maven and GitHub Packages runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: '10' - name: Set up JDK 8 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: '8' @@ -43,7 +43,7 @@ jobs: MAVEN_NEXUS_PASSWORD: ${{ secrets.MAVEN_NEXUS_PASSWORD }} MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} - name: Set up Java for publishing to GitHub Packages - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: '8' diff --git a/.github/workflows/test-analysis.yml b/.github/workflows/test-analysis.yml index dd8240e5..0360e6ee 100644 --- a/.github/workflows/test-analysis.yml +++ b/.github/workflows/test-analysis.yml @@ -11,11 +11,11 @@ jobs: name: Test and push Sonar analysis runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: '0' - name: Set up JDK 11 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: '11' From 4d9c3941e4dbc7ff35ba2d8e7bd5f7fc665b4512 Mon Sep 17 00:00:00 2001 From: JuanfeSanahuja Date: Tue, 2 Apr 2024 10:43:10 +0200 Subject: [PATCH 4/5] Update docker/login-action@v3 to v3 #TASK-5696 --- .github/workflows/deploy-docker-hub-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docker-hub-workflow.yml b/.github/workflows/deploy-docker-hub-workflow.yml index 3118d03f..a85523c0 100644 --- a/.github/workflows/deploy-docker-hub-workflow.yml +++ b/.github/workflows/deploy-docker-hub-workflow.yml @@ -35,7 +35,7 @@ jobs: path: build - name: Chmod run: "find build -regex '.*sh' | while read file ; do chmod u+x $file ; done" - - uses: docker/login-action@v2 + - uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_HUB_USER }} password: ${{ secrets.DOCKER_HUB_PASSWORD }} From 70862ceb9e6fd72601bdb5bcbf75d0970e5a598d Mon Sep 17 00:00:00 2001 From: JuanfeSanahuja Date: Mon, 20 May 2024 15:26:36 +0200 Subject: [PATCH 5/5] Prepare release 5.1.0 --- commons-datastore/commons-datastore-core/pom.xml | 2 +- commons-datastore/commons-datastore-mongodb/pom.xml | 2 +- commons-datastore/commons-datastore-solr/pom.xml | 2 +- commons-datastore/pom.xml | 2 +- commons-lib/pom.xml | 2 +- pom.xml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/commons-datastore/commons-datastore-core/pom.xml b/commons-datastore/commons-datastore-core/pom.xml index 0a06c304..262b9d2b 100644 --- a/commons-datastore/commons-datastore-core/pom.xml +++ b/commons-datastore/commons-datastore-core/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons-datastore - 5.1.0-SNAPSHOT + 5.1.0 ../pom.xml diff --git a/commons-datastore/commons-datastore-mongodb/pom.xml b/commons-datastore/commons-datastore-mongodb/pom.xml index 3ea804ec..61cabc42 100644 --- a/commons-datastore/commons-datastore-mongodb/pom.xml +++ b/commons-datastore/commons-datastore-mongodb/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons-datastore - 5.1.0-SNAPSHOT + 5.1.0 ../pom.xml diff --git a/commons-datastore/commons-datastore-solr/pom.xml b/commons-datastore/commons-datastore-solr/pom.xml index f55f28dc..3b649411 100644 --- a/commons-datastore/commons-datastore-solr/pom.xml +++ b/commons-datastore/commons-datastore-solr/pom.xml @@ -22,7 +22,7 @@ org.opencb.commons commons-datastore - 5.1.0-SNAPSHOT + 5.1.0 ../pom.xml diff --git a/commons-datastore/pom.xml b/commons-datastore/pom.xml index a1260d12..2a800dd9 100644 --- a/commons-datastore/pom.xml +++ b/commons-datastore/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons - 5.1.0-SNAPSHOT + 5.1.0 ../pom.xml diff --git a/commons-lib/pom.xml b/commons-lib/pom.xml index 785b7f53..a3070943 100644 --- a/commons-lib/pom.xml +++ b/commons-lib/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons - 5.1.0-SNAPSHOT + 5.1.0 ../pom.xml diff --git a/pom.xml b/pom.xml index 134f9391..d82a65fc 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.opencb.commons commons - 5.1.0-SNAPSHOT + 5.1.0 pom OpenCB commons project