chore(deps): pin dependencies
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/pr/pr Pipeline was successful

This commit is contained in:
2026-02-22 06:01:21 +00:00
parent 2146c06b02
commit 25e273a12a
5 changed files with 20 additions and 20 deletions

View File

@@ -3,25 +3,25 @@ when:
steps:
- name: install
image: node:24-slim
image: node:24-slim@sha256:a81a03dd965b4052269a57fac857004022b522a4bf06e7a739e25e18bce45af2
depends_on: []
commands:
- npm ci
- name: lint
image: node:24-slim
image: node:24-slim@sha256:a81a03dd965b4052269a57fac857004022b522a4bf06e7a739e25e18bce45af2
depends_on: [install]
commands:
- npm run lint
- name: test
image: node:24-slim
image: node:24-slim@sha256:a81a03dd965b4052269a57fac857004022b522a4bf06e7a739e25e18bce45af2
depends_on: [install]
commands:
- npm run test
- name: e2e
image: mcr.microsoft.com/playwright:v1.58.2-noble
image: mcr.microsoft.com/playwright:v1.58.2-noble@sha256:6446946a1d9fd62d9ae501312a2d76a43ee688542b21622056a372959b65d63d
depends_on: [install]
commands:
- ./scripts/gen-dev-cert.sh
@@ -30,7 +30,7 @@ steps:
NODE_TLS_REJECT_UNAUTHORIZED: "0"
- name: docker-build
image: woodpeckerci/plugin-kaniko
image: woodpeckerci/plugin-kaniko@sha256:b88802ba66af95ee28a8ffde08715631ec2892e024b2c74e90e19f73a5c2c602
depends_on: []
settings:
repo: ${CI_REPO_OWNER}/${CI_REPO_NAME}

View File

@@ -4,7 +4,7 @@ when:
steps:
- name: release
image: alpine
image: alpine@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
commands:
- apk add --no-cache git
- ./scripts/release.sh
@@ -13,7 +13,7 @@ steps:
from_secret: gitea_repo_token
- name: docker
image: woodpeckerci/plugin-kaniko
image: woodpeckerci/plugin-kaniko@sha256:b88802ba66af95ee28a8ffde08715631ec2892e024b2c74e90e19f73a5c2c602
depends_on: [release]
settings:
repo: ${CI_REPO_OWNER}/${CI_REPO_NAME}
@@ -25,7 +25,7 @@ steps:
cleanup: true
- name: helm
image: alpine/helm
image: alpine/helm@sha256:b5c85b997d83e89d9e8ff9215a14b03864274143981af45eb3fe729cdf782c73
depends_on: [release]
environment:
GITEA_REGISTRY_TOKEN:

View File

@@ -1,4 +1,4 @@
FROM node:24-slim AS builder
FROM node:24-slim@sha256:a81a03dd965b4052269a57fac857004022b522a4bf06e7a739e25e18bce45af2 AS builder
WORKDIR /app
@@ -9,7 +9,7 @@ COPY . .
RUN npm run build
# Run stage
FROM node:24-slim AS runner
FROM node:24-slim@sha256:a81a03dd965b4052269a57fac857004022b522a4bf06e7a739e25e18bce45af2 AS runner
# Run as non-root user (node user exists in official image)
USER node

View File

@@ -2,7 +2,7 @@ replicaCount: 1
image:
repository: git.keligrubb.com/keligrubb/kestrelos
tag: 1.0.1
tag: 1.0.1@sha256:91fef785c828c3db910e8f8fd02693a94c5bf693d3bce91fbf7a2d5ba71f7fab
pullPolicy: IfNotPresent
service:

View File

@@ -37,15 +37,15 @@
"ws": "^8.18.0"
},
"devDependencies": {
"@iconify-json/tabler": "^1.2.26",
"@nuxt/eslint": "^1.15.0",
"@nuxt/test-utils": "^4.0.0",
"@playwright/test": "^1.58.2",
"@vitest/coverage-v8": "^4.0.0",
"@vue/test-utils": "^2.4.0",
"eslint": "^9.0.0",
"happy-dom": "^20.6.1",
"vitest": "^4.0.0"
"@iconify-json/tabler": "1.2.26",
"@nuxt/eslint": "1.15.1",
"@nuxt/test-utils": "4.0.0",
"@playwright/test": "1.58.2",
"@vitest/coverage-v8": "4.0.18",
"@vue/test-utils": "2.4.6",
"eslint": "9.39.2",
"happy-dom": "20.6.1",
"vitest": "4.0.18"
},
"overrides": {
"tar": "^7.5.7"