From 57ca34370ac9093fc7b9e9f6f4bf0a5bd056782c Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Thu, 14 Nov 2024 17:35:05 +0900 Subject: [PATCH] Manually update to node:22.11.0-bookworm-slim See https://github.com/dependabot/dependabot-core/issues/2247 for why this is necessary. --- .github/workflows/deploy.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1d022d9..a34c532 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,7 +30,7 @@ jobs: name: Verify Deploy if: ${{ (github.event_name == 'push' || github.event_name == 'repository_dispatch') && github.ref == 'refs/heads/main' }} needs: test - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - run: | for i in {1..10}; do diff --git a/Dockerfile b/Dockerfile index 2896a4e..d28aeea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.17.0-bookworm-slim +FROM node:22.11.0-bookworm-slim WORKDIR /app