From 2a0cc53770ead5605609932dead88d2aeb4f52b5 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Thu, 14 Nov 2024 17:33:29 +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 7e9e19a..79eeeac 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,7 +23,7 @@ jobs: name: Verify Deploy if: ${{ github.event_name == 'push' && 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 585915c..dc163d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.17.0-bookworm-slim +FROM node:22.11.0-bookworm-slim RUN apt-get update && \ apt-get install --yes --no-install-recommends \ ca-certificates curl p7zip-full python3 python3-pip pipx && \