diff --git a/.circleci/config.yml b/.circleci/config.yml index a9e9619..beff592 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.1.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..f85bcd6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.11.1 +FROM node:22.14.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" } }