From a2dafbdd28cb598c557652e1cf283793126236cd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 04:20:44 +0000 Subject: [PATCH] Update all dependencies --- .circleci/config.yml | 2 +- .github/workflows/push-to-dockerhub.yml | 2 +- Dockerfile | 2 +- package.json | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a9e9619..58bc95f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ version: 2.1 # Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. # See: https://circleci.com/docs/orb-intro/ orbs: - node: circleci/node@5.2.0 + node: circleci/node@7.0.0 # Invoke jobs via workflows # See: https://circleci.com/docs/configuration-reference/#workflows diff --git a/.github/workflows/push-to-dockerhub.yml b/.github/workflows/push-to-dockerhub.yml index 67921d3..3800913 100644 --- a/.github/workflows/push-to-dockerhub.yml +++ b/.github/workflows/push-to-dockerhub.yml @@ -59,7 +59,7 @@ jobs: - name: Build and push id: docker_build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: true diff --git a/Dockerfile b/Dockerfile index a58ab4b..685331a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.11.1 +FROM node:22.13.0 COPY . /app diff --git a/package.json b/package.json index 8e97f89..c9ca1aa 100644 --- a/package.json +++ b/package.json @@ -15,10 +15,10 @@ "test": "cp ./config.js.example -r ./config.js && node --trace-warnings ./base/runCi.js && node --trace-warnings index.js" }, "devDependencies": { - "eslint": "^8.46.0", + "eslint": "^9.0.0", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.28.0", - "eslint-plugin-n": "^16.0.1", - "eslint-plugin-promise": "^6.1.1" + "eslint-plugin-n": "^17.0.0", + "eslint-plugin-promise": "^7.0.0" } }