Skip to content

Commit e8ecb33

Browse files
committed
feat: lts = 26
1 parent 322d914 commit e8ecb33

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/docker.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ jobs:
1414

1515
steps:
1616
- name: Check out the repo
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v7
1818

1919
- name: Log in to Docker Hub
20-
uses: docker/login-action@v2
20+
uses: docker/login-action@v4
2121
with:
2222
username: ${{ secrets.DOCKER_USERNAME }}
2323
password: ${{ secrets.DOCKER_PASSWORD }}
2424

2525
- name: Extract branch name
2626
shell: bash
2727
run: |
28-
echo "##[set-output name=branch;]$([[ $GITHUB_REF == refs/heads/v* ]] && echo ${GITHUB_REF#refs/heads/v} || echo 'stable')"
28+
echo "branch=$([[ $GITHUB_REF == refs/heads/v* ]] && echo ${GITHUB_REF#refs/heads/v} || echo 'stable')" >> $GITHUB_OUTPUT
2929
id: extract_branch
3030

3131
- name: Push to Docker Hub
32-
uses: docker/build-push-action@v3
32+
uses: docker/build-push-action@v7
3333
with:
3434
file: Dockerfile
3535
push: true
@@ -42,22 +42,22 @@ jobs:
4242

4343
steps:
4444
- name: Check out the repo
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v7
4646

4747
- name: Log in to Docker Hub
48-
uses: docker/login-action@v2
48+
uses: docker/login-action@v4
4949
with:
5050
username: ${{ secrets.DOCKER_USERNAME }}
5151
password: ${{ secrets.DOCKER_PASSWORD }}
5252

5353
- name: Extract branch name
5454
shell: bash
5555
run: |
56-
echo "##[set-output name=branch;]$([[ $GITHUB_REF == refs/heads/v* ]] && echo ${GITHUB_REF#refs/heads/v} || echo 'stable')"
56+
echo "branch=$([[ $GITHUB_REF == refs/heads/v* ]] && echo ${GITHUB_REF#refs/heads/v} || echo 'stable')" >> $GITHUB_OUTPUT
5757
id: extract_branch
5858

5959
- name: Push to Docker Hub
60-
uses: docker/build-push-action@v3
60+
uses: docker/build-push-action@v7
6161
with:
6262
file: Dockerfile.slim
6363
push: true

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:24.19.0
1+
FROM node:26.7.0
22

33
RUN apt-get update \
44
&& apt-get install -y wget gnupg \

Dockerfile.slim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:24.19.0-slim
1+
FROM node:26.7.0-slim
22

33
RUN apt-get update \
44
&& apt-get install -y git openssl --no-install-recommends \

0 commit comments

Comments
 (0)