Skip to content

Commit df5a3cc

Browse files
fix(deps): update all non-major dependencies
1 parent 57b8f5b commit df5a3cc

File tree

5 files changed

+546
-281
lines changed

5 files changed

+546
-281
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Check Out Repo
20-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
20+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
2121

2222
#- name: Set up QEMU (We don't need QEMU, because we don't build images for platforms other than linux/amd64, which is our current native arch in our infra
2323
# uses: docker/setup-qemu-action@v1.2.0
2424

2525
- name: Set up Docker Buildx
2626
id: buildx
27-
uses: docker/setup-buildx-action@f03ac48505955848960e80bbb68046aa35c7b9e7 # v2.4.1
27+
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.10.0
2828

2929
- name: Login to GitHub Container Registry
30-
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
30+
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
3131
if: ${{ github.event_name != 'pull_request' }}
3232
with:
3333
registry: ghcr.io
@@ -44,7 +44,7 @@ jobs:
4444
run: if [ "${{ github.event_name }}" = "release" ]; then echo ::set-output name=name::; else echo ::set-output name=name::-dev; fi
4545

4646
- name: Generate Docker image metadata
47-
uses: docker/metadata-action@507c2f2dc502c992ad446e3d7a5dfbe311567a96 # v4.3.0
47+
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 # v4.6.0
4848
id: img_meta
4949
with:
5050
flavor: |
@@ -56,7 +56,7 @@ jobs:
5656
latest
5757
- name: Build and push
5858
id: docker_build
59-
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 # v4.0.0
59+
uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1
6060
with:
6161
context: ./
6262
tags: ${{ steps.img_meta.outputs.tags }}

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
16+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
1717

1818
- name: Setup pnpm
19-
uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4
19+
uses: pnpm/action-setup@eae0cfeb286e66ffb5155f1a79b90583a127a68b # v2.4.1
2020
with:
2121
version: latest
2222

2323
- name: Setup Node.js
24-
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
24+
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
2525
with:
2626
node-version-file: .node-version
2727
check-latest: true
@@ -38,15 +38,15 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
41+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
4242

4343
- name: Setup pnpm
44-
uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4
44+
uses: pnpm/action-setup@eae0cfeb286e66ffb5155f1a79b90583a127a68b # v2.4.1
4545
with:
4646
version: latest
4747

4848
- name: Setup Node.js
49-
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
49+
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
5050
with:
5151
node-version-file: .node-version
5252
check-latest: true

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/hazmi35/node:18-dev-alpine as build-stage
1+
FROM ghcr.io/hazmi35/node:18.20.8-dev-alpine as build-stage
22

33
LABEL name "nextjs-tailwind-boilerplate (build-stage)"
44
LABEL maintainer "FrutBits Indonesia <contact@frutbits.org>"
@@ -25,7 +25,7 @@ RUN pnpm run build
2525
RUN pnpm prune --production
2626

2727
# Get ready for production
28-
FROM ghcr.io/hazmi35/node:18-alpine
28+
FROM ghcr.io/hazmi35/node:18.20.8-alpine
2929

3030
LABEL name "nextjs-tailwind-boilerplate"
3131
LABEL maintainer "FrutBits Indonesia <contact@frutbits.org>"

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@next/font": "13.2.4",
12+
"@next/font": "13.5.11",
1313
"@types/node": "18.15.0",
14-
"@types/react": "18.0.28",
15-
"@types/react-dom": "18.0.11",
14+
"@types/react": "18.3.23",
15+
"@types/react-dom": "18.3.7",
1616
"eslint": "8.34.0",
1717
"eslint-config-next": "13.2.1",
18-
"next": "13.2.4",
19-
"react": "18.2.0",
20-
"react-dom": "18.2.0",
18+
"next": "13.5.11",
19+
"react": "18.3.1",
20+
"react-dom": "18.3.1",
2121
"typescript": "4.9.5"
2222
},
2323
"devDependencies": {
2424
"@hazmi35/eslint-config": "^8.7.1",
2525
"@typescript-eslint/eslint-plugin": "^5.53.0",
2626
"@typescript-eslint/parser": "^5.53.0",
27-
"autoprefixer": "^10.4.14",
28-
"postcss": "^8.4.21",
29-
"tailwindcss": "^3.2.7"
27+
"autoprefixer": "^10.4.21",
28+
"postcss": "^8.5.6",
29+
"tailwindcss": "^3.4.17"
3030
}
3131
}

0 commit comments

Comments
 (0)