From 2a44af3ca3e9ed4519e065b6eeb6df43a978523f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Aug 2022 14:19:29 +0000 Subject: [PATCH 01/18] Bump docker-maven-plugin from 0.40.1 to 0.40.2 Bumps [docker-maven-plugin](https://github.com/fabric8io/docker-maven-plugin) from 0.40.1 to 0.40.2. - [Release notes](https://github.com/fabric8io/docker-maven-plugin/releases) - [Changelog](https://github.com/fabric8io/docker-maven-plugin/blob/master/doc/changelog.md) - [Commits](https://github.com/fabric8io/docker-maven-plugin/compare/v0.40.1...v0.40.2) --- updated-dependencies: - dependency-name: io.fabric8:docker-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b996ef..ac4b2e3 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,7 @@ under the License. io.fabric8 docker-maven-plugin - 0.40.1 + 0.40.2 docker-build From bdf8e142c4cd1b8f15e91a12dfebf4fd88795f07 Mon Sep 17 00:00:00 2001 From: Andy Boothe Date: Wed, 21 Sep 2022 10:46:38 -0500 Subject: [PATCH 02/18] add CI/CD for java19 --- .github/workflows/deliver19.yml | 41 +++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/deliver19.yml diff --git a/.github/workflows/deliver19.yml b/.github/workflows/deliver19.yml new file mode 100644 index 0000000..4c373f7 --- /dev/null +++ b/.github/workflows/deliver19.yml @@ -0,0 +1,41 @@ +name: deliver19 + +on: + push: + branches: + - java/19 + +permissions: + id-token: write + contents: read + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v3 + - name: Set up JDK 19 + uses: actions/setup-java@v3 + with: + java-version: '19' + distribution: 'corretto' + - name: Cache local Maven repository + uses: actions/cache@v3 + with: + path: ~/.m2/repository + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} + restore-keys: | + ${{ runner.os }}-maven- + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole + aws-region: us-east-2 + - name: Login to Amazon ECR Public + uses: aws-actions/amazon-ecr-login@v1 + - name: Deploy artifacts + run: mvn -B -Daws.account="$AWS_ACCOUNT_ID" -Daws.region="$AWS_REGION" clean compile install docker:push + env: + AWS_REGION: ${{ secrets.AWS_REGION }} + AWS_ACCOUNT_ID: ${{ secrets.CD_AWS_ACCOUNT_ID }} From 352837e9bc8243a4dc715b78af755fe3a70111e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Oct 2022 15:47:51 +0000 Subject: [PATCH 03/18] Bump dropwizard-dependencies from 2.1.1 to 2.1.4 Bumps dropwizard-dependencies from 2.1.1 to 2.1.4. --- updated-dependencies: - dependency-name: io.dropwizard:dropwizard-dependencies dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b996ef..16b70ce 100644 --- a/pom.xml +++ b/pom.xml @@ -62,7 +62,7 @@ under the License. 17 ${project.version} al2 - 2.1.1 + 2.1.4 From 371caace0196b63722aa4e2636f1e51db6437203 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Oct 2022 15:44:00 +0000 Subject: [PATCH 04/18] Bump maven-shade-plugin from 2.3 to 3.4.1 Bumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 2.3 to 3.4.1. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-2.3...maven-shade-plugin-3.4.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b996ef..0393731 100644 --- a/pom.xml +++ b/pom.xml @@ -109,7 +109,7 @@ under the License. org.apache.maven.plugins maven-shade-plugin - 2.3 + 3.4.1 package From 87ad0d6afdd9eb892ca0c237916e3b771ebe4641 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Nov 2022 15:18:37 +0000 Subject: [PATCH 05/18] Bump aws-lambda-java-core from 1.2.1 to 1.2.2 Bumps [aws-lambda-java-core](https://github.com/aws/aws-lambda-java-libs) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/aws/aws-lambda-java-libs/releases) - [Commits](https://github.com/aws/aws-lambda-java-libs/commits) --- updated-dependencies: - dependency-name: com.amazonaws:aws-lambda-java-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0393731..edcde8d 100644 --- a/pom.xml +++ b/pom.xml @@ -191,7 +191,7 @@ under the License. com.amazonaws aws-lambda-java-core - 1.2.1 + 1.2.2 provided From 855d2d7749ab6a0b43f90b19e8e45826ca489e7c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Dec 2022 15:15:02 +0000 Subject: [PATCH 06/18] Bump docker-maven-plugin from 0.40.2 to 0.40.3 Bumps [docker-maven-plugin](https://github.com/fabric8io/docker-maven-plugin) from 0.40.2 to 0.40.3. - [Release notes](https://github.com/fabric8io/docker-maven-plugin/releases) - [Changelog](https://github.com/fabric8io/docker-maven-plugin/blob/master/doc/changelog.md) - [Commits](https://github.com/fabric8io/docker-maven-plugin/compare/v0.40.2...v0.40.3) --- updated-dependencies: - dependency-name: io.fabric8:docker-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e99cbb2..4b85b39 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,7 @@ under the License. io.fabric8 docker-maven-plugin - 0.40.2 + 0.40.3 docker-build From 5eb51704fbd6311d1166c566266514a96a1441b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Jan 2023 15:08:44 +0000 Subject: [PATCH 07/18] Bump software.amazon.awssdk:bom from 2.17.211 to 2.19.11 Bumps [software.amazon.awssdk:bom](https://github.com/aws/aws-sdk-java-v2) from 2.17.211 to 2.19.11. - [Release notes](https://github.com/aws/aws-sdk-java-v2/releases) - [Changelog](https://github.com/aws/aws-sdk-java-v2/blob/master/docs/LaunchChangelog.md) - [Commits](https://github.com/aws/aws-sdk-java-v2/compare/2.17.211...2.19.11) --- updated-dependencies: - dependency-name: software.amazon.awssdk:bom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b85b39..eb1cf0f 100644 --- a/pom.xml +++ b/pom.xml @@ -180,7 +180,7 @@ under the License. software.amazon.awssdk bom - 2.17.211 + 2.19.11 pom import From da41cbf775740acba2d822bf70317919e4e25d34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 15:11:59 +0000 Subject: [PATCH 08/18] Bump software.amazon.awssdk:bom from 2.19.11 to 2.19.19 Bumps [software.amazon.awssdk:bom](https://github.com/aws/aws-sdk-java-v2) from 2.19.11 to 2.19.19. - [Release notes](https://github.com/aws/aws-sdk-java-v2/releases) - [Changelog](https://github.com/aws/aws-sdk-java-v2/blob/master/docs/LaunchChangelog.md) - [Commits](https://github.com/aws/aws-sdk-java-v2/compare/2.19.11...2.19.19) --- updated-dependencies: - dependency-name: software.amazon.awssdk:bom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ec14844..e51a048 100644 --- a/pom.xml +++ b/pom.xml @@ -180,7 +180,7 @@ under the License. software.amazon.awssdk bom - 2.19.11 + 2.19.19 pom import From e3d2dd39474035bbf9857c295f6e41fe32561bfa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Feb 2023 15:08:38 +0000 Subject: [PATCH 09/18] Bump docker-maven-plugin from 0.40.3 to 0.41.0 Bumps [docker-maven-plugin](https://github.com/fabric8io/docker-maven-plugin) from 0.40.3 to 0.41.0. - [Release notes](https://github.com/fabric8io/docker-maven-plugin/releases) - [Changelog](https://github.com/fabric8io/docker-maven-plugin/blob/master/doc/changelog.md) - [Commits](https://github.com/fabric8io/docker-maven-plugin/compare/v0.40.3...v0.41.0) --- updated-dependencies: - dependency-name: io.fabric8:docker-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e51a048..29d61ff 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,7 @@ under the License. io.fabric8 docker-maven-plugin - 0.40.3 + 0.41.0 docker-build From 917cc86e06481b7b85ed22dc4c453036183bff74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Mar 2023 16:06:50 +0000 Subject: [PATCH 10/18] Bump docker-maven-plugin from 0.41.0 to 0.42.0 Bumps [docker-maven-plugin](https://github.com/fabric8io/docker-maven-plugin) from 0.41.0 to 0.42.0. - [Release notes](https://github.com/fabric8io/docker-maven-plugin/releases) - [Changelog](https://github.com/fabric8io/docker-maven-plugin/blob/master/doc/changelog.md) - [Commits](https://github.com/fabric8io/docker-maven-plugin/compare/v0.41.0...v0.42.0) --- updated-dependencies: - dependency-name: io.fabric8:docker-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 29d61ff..fe79b94 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,7 @@ under the License. io.fabric8 docker-maven-plugin - 0.41.0 + 0.42.0 docker-build From 99908592d26f6479abe5c42ce690d97c568eef4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Mar 2023 16:03:46 +0000 Subject: [PATCH 11/18] Bump aws-actions/configure-aws-credentials from 1 to 2 Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 1 to 2. - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v1...v2) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deliver17.yml | 2 +- .github/workflows/deliver18.yml | 2 +- .github/workflows/deliver19.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deliver17.yml b/.github/workflows/deliver17.yml index c9b1639..cd2ccf3 100644 --- a/.github/workflows/deliver17.yml +++ b/.github/workflows/deliver17.yml @@ -28,7 +28,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 with: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 diff --git a/.github/workflows/deliver18.yml b/.github/workflows/deliver18.yml index f314410..780da03 100644 --- a/.github/workflows/deliver18.yml +++ b/.github/workflows/deliver18.yml @@ -28,7 +28,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 with: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 diff --git a/.github/workflows/deliver19.yml b/.github/workflows/deliver19.yml index 4c373f7..aab631b 100644 --- a/.github/workflows/deliver19.yml +++ b/.github/workflows/deliver19.yml @@ -28,7 +28,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 with: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 From bf0b8c8baa951afc02db035f0ce4612e96f9ca0e Mon Sep 17 00:00:00 2001 From: Andy Boothe Date: Fri, 24 Mar 2023 21:47:20 -0500 Subject: [PATCH 12/18] add version 20 --- .github/workflows/deliver20.yml | 41 +++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/deliver20.yml diff --git a/.github/workflows/deliver20.yml b/.github/workflows/deliver20.yml new file mode 100644 index 0000000..8e29318 --- /dev/null +++ b/.github/workflows/deliver20.yml @@ -0,0 +1,41 @@ +name: deliver19 + +on: + push: + branches: + - java/20 + +permissions: + id-token: write + contents: read + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v3 + - name: Set up JDK 20 + uses: actions/setup-java@v3 + with: + java-version: '20' + distribution: 'corretto' + - name: Cache local Maven repository + uses: actions/cache@v3 + with: + path: ~/.m2/repository + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} + restore-keys: | + ${{ runner.os }}-maven- + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole + aws-region: us-east-2 + - name: Login to Amazon ECR Public + uses: aws-actions/amazon-ecr-login@v1 + - name: Deploy artifacts + run: mvn -B -Daws.account="$AWS_ACCOUNT_ID" -Daws.region="$AWS_REGION" clean compile install docker:push + env: + AWS_REGION: ${{ secrets.AWS_REGION }} + AWS_ACCOUNT_ID: ${{ secrets.CD_AWS_ACCOUNT_ID }} From 56d7ddcfad0e1ce65d41adde90e18c5222496557 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Jun 2023 16:00:44 +0000 Subject: [PATCH 13/18] Bump license-maven-plugin from 2.0.0 to 2.1.0 Bumps [license-maven-plugin](https://github.com/mojohaus/license-maven-plugin) from 2.0.0 to 2.1.0. - [Release notes](https://github.com/mojohaus/license-maven-plugin/releases) - [Commits](https://github.com/mojohaus/license-maven-plugin/compare/license-maven-plugin-2.0.0...2.1.0) --- updated-dependencies: - dependency-name: org.codehaus.mojo:license-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fe79b94..54ef2da 100644 --- a/pom.xml +++ b/pom.xml @@ -81,7 +81,7 @@ under the License. org.codehaus.mojo license-maven-plugin - 2.0.0 + 2.1.0 false From 529a69073bfc29c5ddf8181743b95175d1e80f1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 15:16:28 +0000 Subject: [PATCH 14/18] Bump aws-actions/amazon-ecr-login from 1 to 2 Bumps [aws-actions/amazon-ecr-login](https://github.com/aws-actions/amazon-ecr-login) from 1 to 2. - [Release notes](https://github.com/aws-actions/amazon-ecr-login/releases) - [Changelog](https://github.com/aws-actions/amazon-ecr-login/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/amazon-ecr-login/compare/v1...v2) --- updated-dependencies: - dependency-name: aws-actions/amazon-ecr-login dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deliver17.yml | 2 +- .github/workflows/deliver18.yml | 2 +- .github/workflows/deliver19.yml | 2 +- .github/workflows/deliver20.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deliver17.yml b/.github/workflows/deliver17.yml index cd2ccf3..292b926 100644 --- a/.github/workflows/deliver17.yml +++ b/.github/workflows/deliver17.yml @@ -33,7 +33,7 @@ jobs: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 - name: Login to Amazon ECR Public - uses: aws-actions/amazon-ecr-login@v1 + uses: aws-actions/amazon-ecr-login@v2 - name: Deploy artifacts run: mvn -B -Daws.account="$AWS_ACCOUNT_ID" -Daws.region="$AWS_REGION" clean compile install docker:push env: diff --git a/.github/workflows/deliver18.yml b/.github/workflows/deliver18.yml index 780da03..abb3d9b 100644 --- a/.github/workflows/deliver18.yml +++ b/.github/workflows/deliver18.yml @@ -33,7 +33,7 @@ jobs: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 - name: Login to Amazon ECR Public - uses: aws-actions/amazon-ecr-login@v1 + uses: aws-actions/amazon-ecr-login@v2 - name: Deploy artifacts run: mvn -B -Daws.account="$AWS_ACCOUNT_ID" -Daws.region="$AWS_REGION" clean compile install docker:push env: diff --git a/.github/workflows/deliver19.yml b/.github/workflows/deliver19.yml index aab631b..7e893bf 100644 --- a/.github/workflows/deliver19.yml +++ b/.github/workflows/deliver19.yml @@ -33,7 +33,7 @@ jobs: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 - name: Login to Amazon ECR Public - uses: aws-actions/amazon-ecr-login@v1 + uses: aws-actions/amazon-ecr-login@v2 - name: Deploy artifacts run: mvn -B -Daws.account="$AWS_ACCOUNT_ID" -Daws.region="$AWS_REGION" clean compile install docker:push env: diff --git a/.github/workflows/deliver20.yml b/.github/workflows/deliver20.yml index 8e29318..067f819 100644 --- a/.github/workflows/deliver20.yml +++ b/.github/workflows/deliver20.yml @@ -33,7 +33,7 @@ jobs: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 - name: Login to Amazon ECR Public - uses: aws-actions/amazon-ecr-login@v1 + uses: aws-actions/amazon-ecr-login@v2 - name: Deploy artifacts run: mvn -B -Daws.account="$AWS_ACCOUNT_ID" -Daws.region="$AWS_REGION" clean compile install docker:push env: From f82b11487991811884c1ef51066d63b5abb63e82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 15:16:31 +0000 Subject: [PATCH 15/18] Bump aws-actions/configure-aws-credentials from 2 to 4 Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 2 to 4. - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v2...v4) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deliver17.yml | 2 +- .github/workflows/deliver18.yml | 2 +- .github/workflows/deliver19.yml | 2 +- .github/workflows/deliver20.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deliver17.yml b/.github/workflows/deliver17.yml index cd2ccf3..b9762c3 100644 --- a/.github/workflows/deliver17.yml +++ b/.github/workflows/deliver17.yml @@ -28,7 +28,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 diff --git a/.github/workflows/deliver18.yml b/.github/workflows/deliver18.yml index 780da03..7263fbf 100644 --- a/.github/workflows/deliver18.yml +++ b/.github/workflows/deliver18.yml @@ -28,7 +28,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 diff --git a/.github/workflows/deliver19.yml b/.github/workflows/deliver19.yml index aab631b..1b7373d 100644 --- a/.github/workflows/deliver19.yml +++ b/.github/workflows/deliver19.yml @@ -28,7 +28,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 diff --git a/.github/workflows/deliver20.yml b/.github/workflows/deliver20.yml index 8e29318..91b7118 100644 --- a/.github/workflows/deliver20.yml +++ b/.github/workflows/deliver20.yml @@ -28,7 +28,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/GitHubRole aws-region: us-east-2 From 96fca5746c6f1ae23e799cb389395628c307311a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 15:16:34 +0000 Subject: [PATCH 16/18] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deliver17.yml | 2 +- .github/workflows/deliver18.yml | 2 +- .github/workflows/deliver19.yml | 2 +- .github/workflows/deliver20.yml | 2 +- .github/workflows/integration.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deliver17.yml b/.github/workflows/deliver17.yml index cd2ccf3..4fe24ed 100644 --- a/.github/workflows/deliver17.yml +++ b/.github/workflows/deliver17.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up JDK 17 uses: actions/setup-java@v3 with: diff --git a/.github/workflows/deliver18.yml b/.github/workflows/deliver18.yml index 780da03..5254c13 100644 --- a/.github/workflows/deliver18.yml +++ b/.github/workflows/deliver18.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up JDK 18 uses: actions/setup-java@v3 with: diff --git a/.github/workflows/deliver19.yml b/.github/workflows/deliver19.yml index aab631b..032c0d4 100644 --- a/.github/workflows/deliver19.yml +++ b/.github/workflows/deliver19.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up JDK 19 uses: actions/setup-java@v3 with: diff --git a/.github/workflows/deliver20.yml b/.github/workflows/deliver20.yml index 8e29318..10240a4 100644 --- a/.github/workflows/deliver20.yml +++ b/.github/workflows/deliver20.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up JDK 20 uses: actions/setup-java@v3 with: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0a074c0..3fc0bb3 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up JDK 17 uses: actions/setup-java@v3 with: From 57e22b039e513127e27a5f7969a3276612cb1bf3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:01:27 +0000 Subject: [PATCH 17/18] Bump org.apache.maven.plugins:maven-shade-plugin from 3.4.1 to 3.5.1 Bumps [org.apache.maven.plugins:maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.4.1 to 3.5.1. - [Release notes](https://github.com/apache/maven-shade-plugin/releases) - [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.4.1...maven-shade-plugin-3.5.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-shade-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54ef2da..0215dc2 100644 --- a/pom.xml +++ b/pom.xml @@ -109,7 +109,7 @@ under the License. org.apache.maven.plugins maven-shade-plugin - 3.4.1 + 3.5.1 package From 15b96014686c54ce2d6aa9facb45e7fd762ccd94 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:01:31 +0000 Subject: [PATCH 18/18] Bump io.fabric8:docker-maven-plugin from 0.42.0 to 0.43.4 Bumps [io.fabric8:docker-maven-plugin](https://github.com/fabric8io/docker-maven-plugin) from 0.42.0 to 0.43.4. - [Release notes](https://github.com/fabric8io/docker-maven-plugin/releases) - [Changelog](https://github.com/fabric8io/docker-maven-plugin/blob/master/doc/changelog.md) - [Commits](https://github.com/fabric8io/docker-maven-plugin/compare/v0.42.0...v0.43.4) --- updated-dependencies: - dependency-name: io.fabric8:docker-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54ef2da..e7408b6 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,7 @@ under the License. io.fabric8 docker-maven-plugin - 0.42.0 + 0.43.4 docker-build