Skip to content

Commit a2beda3

Browse files
committed
Update dependencies, v0.15.2
1 parent 11e3b4d commit a2beda3

5 files changed

Lines changed: 158 additions & 155 deletions

File tree

.github/workflows/actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
deploy:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/setup-node@v4
10+
- uses: actions/setup-node@v6
1111
with:
1212
node-version: 'lts/*'
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- run: npm install
1515
- run: npm run build
1616
- uses: peaceiris/actions-gh-pages@v4

.github/workflows/docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 0
2424
- name: Create image and tag names
2525
id: meta
26-
uses: docker/metadata-action@v5
26+
uses: docker/metadata-action@v6
2727
with:
2828
images: mundialis/openeo-web-editor
2929
tags: |
@@ -32,17 +32,17 @@ jobs:
3232
flavor: |
3333
latest=auto
3434
- name: Set up QEMU
35-
uses: docker/setup-qemu-action@v3
35+
uses: docker/setup-qemu-action@v4
3636
- name: Set up Docker Buildx
37-
uses: docker/setup-buildx-action@v3
37+
uses: docker/setup-buildx-action@v4
3838
- name: Login to DockerHub
39-
uses: docker/login-action@v3
39+
uses: docker/login-action@v4
4040
with:
4141
username: ${{ secrets.DOCKERHUB_USERNAME }}
4242
password: ${{ secrets.DOCKERHUB_TOKEN }}
4343
- name: Build and push
4444
id: docker_build
45-
uses: docker/build-push-action@v6
45+
uses: docker/build-push-action@v7
4646
with:
4747
push: true
4848
tags: ${{ steps.meta.outputs.tags }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22-alpine AS build
1+
FROM node:24-alpine AS build
22

33
# Copy source code
44
COPY . /src/openeo-web-editor
@@ -9,5 +9,5 @@ RUN npm install
99
RUN npm run build
1010

1111
# Copy build folder and run with nginx
12-
FROM nginx:1.28.3-alpine
12+
FROM nginx:1.30.0-alpine
1313
COPY --from=build /src/openeo-web-editor/dist /usr/share/nginx/html

0 commit comments

Comments
 (0)