From af7d7180abc6299f69a15e23f3598588fa44b2c8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 15:00:06 +0000 Subject: [PATCH 1/6] chore(deps): update actions/checkout action to v4 --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c0b9e80..10199e6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: contents: read steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v2 @@ -56,7 +56,7 @@ jobs: contents: read steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6daac2b..93df200 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: --health-retries 5 steps: - name: Checkout sources - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install stable toolchain uses: actions-rs/toolchain@v1 @@ -79,7 +79,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - name: Build the Docker image uses: docker/build-push-action@v4 From 376e81d21eaf654a342c432ec62c7fd058c91eb2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 15:00:11 +0000 Subject: [PATCH 2/6] chore(deps): update aws-actions/amazon-ecr-login action to v2 --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c0b9e80..058c290 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,7 +28,7 @@ jobs: - name: Login to Amazon ECR id: login-ecr - uses: aws-actions/amazon-ecr-login@v1 + uses: aws-actions/amazon-ecr-login@v2 - uses: docker/setup-buildx-action@v2 - name: Build and tag the Docker image @@ -66,7 +66,7 @@ jobs: - name: Login to Amazon ECR id: login-ecr - uses: aws-actions/amazon-ecr-login@v1 + uses: aws-actions/amazon-ecr-login@v2 - uses: docker/setup-buildx-action@v2 - name: Build and tag the Docker image From 3128bcef526ef70d017ecc77bfc6d9fa4e25c807 Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Tue, 3 Sep 2024 17:25:51 +0200 Subject: [PATCH 3/6] chore(renovate): disable docker updates --- .github/renovate.json5 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 496a35c..2bba02c 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,4 +1,8 @@ { $schema: "https://docs.renovatebot.com/renovate-schema.json", - extends: ["config:recommended", ":maintainLockFilesMonthly"], + extends: [ + "config:recommended", + ":maintainLockFilesMonthly", + "docker:disable", + ], } From 0b319fadc6e5192e9c3c8ea29a2ff8d98c0b99aa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 19:29:24 +0000 Subject: [PATCH 4/6] chore(deps): update aws-actions/configure-aws-credentials action to v4 --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ab72f17..6a24793 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,7 +21,7 @@ jobs: uses: actions/checkout@v4 - 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::392478027976:role/gha-access aws-region: us-east-2 @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@v4 - 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::351621253146:role/gha-access aws-region: us-east-2 From 69ae1cbbeff43e473eb6a90c58abe77677d5f336 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 19:29:27 +0000 Subject: [PATCH 5/6] chore(deps): update docker/build-push-action action to v6 --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ab72f17..b4f6a58 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,7 +36,7 @@ jobs: REGISTRY: ${{ steps.login-ecr.outputs.registry }} REPOSITORY: bors IMAGE_TAG: latest - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . tags: ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ env.IMAGE_TAG }} @@ -74,7 +74,7 @@ jobs: REGISTRY: ${{ steps.login-ecr.outputs.registry }} REPOSITORY: bors IMAGE_TAG: latest - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . tags: ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ env.IMAGE_TAG }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0d58b3..6784f80 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -82,7 +82,7 @@ jobs: uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - name: Build the Docker image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . cache-from: type=gha From ed4b9170d5c96b1a68630c8f57f98cdc7c2ca39d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:29:45 +0000 Subject: [PATCH 6/6] chore(deps): update docker/setup-buildx-action action to v3 --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index cd5bdcb..aab9043 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,7 +30,7 @@ jobs: id: login-ecr uses: aws-actions/amazon-ecr-login@v2 - - uses: docker/setup-buildx-action@v2 + - uses: docker/setup-buildx-action@v3 - name: Build and tag the Docker image env: REGISTRY: ${{ steps.login-ecr.outputs.registry }} @@ -68,7 +68,7 @@ jobs: id: login-ecr uses: aws-actions/amazon-ecr-login@v2 - - uses: docker/setup-buildx-action@v2 + - uses: docker/setup-buildx-action@v3 - name: Build and tag the Docker image env: REGISTRY: ${{ steps.login-ecr.outputs.registry }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6784f80..4ca2ad9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -80,7 +80,7 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 - - uses: docker/setup-buildx-action@v2 + - uses: docker/setup-buildx-action@v3 - name: Build the Docker image uses: docker/build-push-action@v6 with: