Skip to content

Commit 4b1f334

Browse files
committed
Merge branch 'main' into chore-check-licenses-and-vulnerability
2 parents 3f715bd + db4147b commit 4b1f334

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

.github/renovate.json5

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
22
$schema: "https://docs.renovatebot.com/renovate-schema.json",
3-
extends: ["config:recommended", ":maintainLockFilesMonthly"],
3+
extends: [
4+
"config:recommended",
5+
":maintainLockFilesMonthly",
6+
"docker:disable",
7+
],
48
}

.github/workflows/deploy.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,25 @@ jobs:
1818
contents: read
1919
steps:
2020
- name: Checkout repo
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Configure AWS credentials
24-
uses: aws-actions/configure-aws-credentials@v2
24+
uses: aws-actions/configure-aws-credentials@v4
2525
with:
2626
role-to-assume: arn:aws:iam::392478027976:role/gha-access
2727
aws-region: us-east-2
2828

2929
- name: Login to Amazon ECR
3030
id: login-ecr
31-
uses: aws-actions/amazon-ecr-login@v1
31+
uses: aws-actions/amazon-ecr-login@v2
3232

33-
- uses: docker/setup-buildx-action@v2
33+
- uses: docker/setup-buildx-action@v3
3434
- name: Build and tag the Docker image
3535
env:
3636
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
3737
REPOSITORY: bors
3838
IMAGE_TAG: latest
39-
uses: docker/build-push-action@v4
39+
uses: docker/build-push-action@v6
4040
with:
4141
context: .
4242
tags: ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ env.IMAGE_TAG }}
@@ -56,25 +56,25 @@ jobs:
5656
contents: read
5757
steps:
5858
- name: Checkout repo
59-
uses: actions/checkout@v3
59+
uses: actions/checkout@v4
6060

6161
- name: Configure AWS credentials
62-
uses: aws-actions/configure-aws-credentials@v2
62+
uses: aws-actions/configure-aws-credentials@v4
6363
with:
6464
role-to-assume: arn:aws:iam::351621253146:role/gha-access
6565
aws-region: us-east-2
6666

6767
- name: Login to Amazon ECR
6868
id: login-ecr
69-
uses: aws-actions/amazon-ecr-login@v1
69+
uses: aws-actions/amazon-ecr-login@v2
7070

71-
- uses: docker/setup-buildx-action@v2
71+
- uses: docker/setup-buildx-action@v3
7272
- name: Build and tag the Docker image
7373
env:
7474
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
7575
REPOSITORY: bors
7676
IMAGE_TAG: latest
77-
uses: docker/build-push-action@v4
77+
uses: docker/build-push-action@v6
7878
with:
7979
context: .
8080
tags: ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ env.IMAGE_TAG }}

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
--health-retries 5
3131
steps:
3232
- name: Checkout sources
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
3434

3535
- name: Install stable toolchain
3636
uses: actions-rs/toolchain@v1
@@ -79,10 +79,10 @@ jobs:
7979
runs-on: ubuntu-latest
8080
steps:
8181
- name: Checkout repo
82-
uses: actions/checkout@v3
83-
- uses: docker/setup-buildx-action@v2
82+
uses: actions/checkout@v4
83+
- uses: docker/setup-buildx-action@v3
8484
- name: Build the Docker image
85-
uses: docker/build-push-action@v4
85+
uses: docker/build-push-action@v6
8686
with:
8787
context: .
8888
cache-from: type=gha

0 commit comments

Comments
 (0)