Skip to content

Commit cf37455

Browse files
authored
Merge branch 'master' into master
2 parents 132768a + b40aec2 commit cf37455

File tree

18 files changed

+1999
-868
lines changed

18 files changed

+1999
-868
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v3
1616

17-
- uses: actions/setup-node@v3
17+
- uses: actions/setup-node@v4
1818
with:
1919
node-version: "18"
2020

@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v3
4141
name: Checkout Repo
4242

43-
- uses: docker/setup-buildx-action@v2
43+
- uses: docker/setup-buildx-action@v3
4444
name: Set up Docker Buildx
4545

4646
- uses: docker/build-push-action@v4

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16-
- uses: actions/setup-node@v3
16+
- uses: actions/setup-node@v4
1717
with:
1818
node-version: "18"
1919

.github/workflows/mirror.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
packages: write
1717
steps:
1818
- name: configure aws credentials
19-
uses: aws-actions/configure-aws-credentials@v2
19+
uses: aws-actions/configure-aws-credentials@v4
2020
with:
2121
role-to-assume: ${{ secrets.PROD_AWS_ROLE }}
2222
aws-region: us-east-1
23-
- uses: docker/login-action@v2
23+
- uses: docker/login-action@v3
2424
with:
2525
registry: public.ecr.aws
26-
- uses: docker/login-action@v2
26+
- uses: docker/login-action@v3
2727
with:
2828
registry: ghcr.io
2929
username: ${{ github.actor }}

.github/workflows/publish-deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
repository: 'pyramation/libpg-query-node'
1414
ref: 'v13'
1515

16-
- uses: actions/setup-node@v3
16+
- uses: actions/setup-node@v4
1717
with:
1818
node-version: '18'
1919

2020
- run: npm i
2121
- run: npm run binary:build
2222

23-
- uses: aws-actions/configure-aws-credentials@v2
23+
- uses: aws-actions/configure-aws-credentials@v4
2424
with:
2525
role-to-assume: ${{ secrets.PROD_AWS_ROLE }}
2626
aws-region: us-east-1

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818

19-
- uses: actions/setup-node@v3
19+
- uses: actions/setup-node@v4
2020
with:
2121
node-version: '18'
2222

@@ -25,7 +25,7 @@ jobs:
2525
npm run build
2626
2727
- id: semantic-release
28-
uses: cycjimmy/semantic-release-action@v3
28+
uses: cycjimmy/semantic-release-action@v4
2929
with:
3030
semantic_version: 18
3131
env:
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- uses: actions/checkout@v3
4343

44-
- uses: actions/setup-node@v3
44+
- uses: actions/setup-node@v4
4545
with:
4646
node-version: '18'
4747

@@ -73,7 +73,7 @@ jobs:
7373
packages: write
7474
steps:
7575
- id: meta
76-
uses: docker/metadata-action@v4
76+
uses: docker/metadata-action@v5
7777
with:
7878
images: |
7979
supabase/postgres-meta
@@ -85,27 +85,27 @@ jobs:
8585
- uses: docker/setup-qemu-action@v2
8686
with:
8787
platforms: amd64,arm64
88-
- uses: docker/setup-buildx-action@v2
88+
- uses: docker/setup-buildx-action@v3
8989

9090
- name: Login to DockerHub
91-
uses: docker/login-action@v2
91+
uses: docker/login-action@v3
9292
with:
9393
username: ${{ secrets.DOCKER_USERNAME }}
9494
password: ${{ secrets.DOCKER_PASSWORD }}
9595

9696
- name: configure aws credentials
97-
uses: aws-actions/configure-aws-credentials@v2
97+
uses: aws-actions/configure-aws-credentials@v4
9898
with:
9999
role-to-assume: ${{ secrets.PROD_AWS_ROLE }}
100100
aws-region: us-east-1
101101

102102
- name: Login to ECR
103-
uses: docker/login-action@v2
103+
uses: docker/login-action@v3
104104
with:
105105
registry: public.ecr.aws
106106

107107
- name: Login to GHCR
108-
uses: docker/login-action@v2
108+
uses: docker/login-action@v3
109109
with:
110110
registry: ghcr.io
111111
username: ${{ github.actor }}

0 commit comments

Comments
 (0)