Skip to content

Commit 39ab671

Browse files
committed
Bump runtime and Github Actions
1 parent 01a266f commit 39ab671

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,43 @@ jobs:
88
build-image:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212

1313
- name: Login to GitHub Container Registry
14-
uses: docker/login-action@v1
14+
uses: docker/login-action@v3
1515
with:
1616
registry: ghcr.io
1717
username: knatnetwork
1818
password: ${{ secrets.GITHUB_TOKEN }}
1919

2020
- name: Login to Docker Hub
21-
uses: docker/login-action@v1
21+
uses: docker/login-action@v3
2222
with:
2323
username: knatnetwork
2424
password: ${{ secrets.DOCKERHUB_PASSWD }}
2525

2626
- name: Set up QEMU
27-
uses: docker/setup-qemu-action@v1
27+
uses: docker/setup-qemu-action@v3
2828

2929
- name: Set up Docker Buildx
30-
uses: docker/setup-buildx-action@v1
30+
uses: docker/setup-buildx-action@v3
3131

3232
- name: Login to Docker Hub
33-
uses: docker/login-action@v1
33+
uses: docker/login-action@v3
3434
with:
3535
username: knatnetwork
3636
password: ${{ secrets.DOCKERHUB_PASSWD }}
3737

3838
- name: Cache Docker layers
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: /tmp/.buildx-cache
4242
key: ${{ runner.os }}-buildx-${{ github.sha }}
4343
restore-keys: |
4444
${{ runner.os }}-buildx
4545
4646
- name: Build and push ARM64 Version
47-
uses: docker/build-push-action@v2
47+
uses: docker/build-push-action@v5
4848
with:
4949
context: .
5050
platforms: linux/arm64,linux/amd64

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.13.1-alpine3.14
1+
FROM node:23-alpine3.20
22

33
USER root
44

0 commit comments

Comments
 (0)