Skip to content

Commit 1473413

Browse files
committed
chore(deps): update dependencies
1 parent a369573 commit 1473413

File tree

5 files changed

+287
-296
lines changed

5 files changed

+287
-296
lines changed

.github/workflows/cd.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: ⬇️ Checkout project
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: 📋 Build Changelog
2222
run: npx extract-changelog-release > RELEASE_BODY.md
@@ -34,22 +34,22 @@ jobs:
3434

3535
steps:
3636
- name: ⬇️ Checkout project
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838

3939
- name: 💻 Log in to Docker Hub
40-
uses: docker/login-action@v2
40+
uses: docker/login-action@v3
4141
with:
4242
username: ${{ secrets.DOCKER_USERNAME }}
4343
password: ${{ secrets.DOCKER_PASSWORD }}
4444

4545
- name: 🏷️ Extract metadata (tags, labels) for Docker
4646
id: meta
47-
uses: docker/metadata-action@v4
47+
uses: docker/metadata-action@v5
4848
with:
4949
images: borjapazr/express-typescript-skeleton
5050

5151
- name: 💽 Build and push Docker image
52-
uses: docker/build-push-action@v4
52+
uses: docker/build-push-action@v5
5353
with:
5454
context: .
5555
file: docker/Dockerfile
@@ -65,5 +65,5 @@ jobs:
6565
steps:
6666
- name: 🚀 Deploy Express Typescript Skeleton webhook
6767
uses: joelwmale/webhook-action@master
68-
env:
69-
WEBHOOK_URL: ${{ secrets.REDEPLOY_WEBHOOK_URL }}
68+
with:
69+
url: ${{ secrets.REDEPLOY_WEBHOOK_URL }}

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: ⬇️ Checkout project
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: 🟢 Setup NodeJS ${{ matrix.node-version }}
2626
uses: actions/setup-node@v3
@@ -62,7 +62,7 @@ jobs:
6262

6363
steps:
6464
- name: ⬇️ Checkout project
65-
uses: actions/checkout@v3
65+
uses: actions/checkout@v4
6666

6767
- name: 🟢 Setup NodeJS ${{ matrix.node-version }}
6868
uses: actions/setup-node@v3
@@ -89,7 +89,7 @@ jobs:
8989

9090
steps:
9191
- name: ⬇️ Checkout project
92-
uses: actions/checkout@v3
92+
uses: actions/checkout@v4
9393

9494
- name: 🟢 Setup NodeJS ${{ matrix.node-version }}
9595
uses: actions/setup-node@v3

docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
- ${EXTERNAL_PORT}:${PORT}
2525

2626
express-typescript-skeleton-db:
27-
image: postgres:15
27+
image: postgres:16
2828
container_name: express-typescript-skeleton-db
2929
restart: always
3030
environment:

0 commit comments

Comments
 (0)