From d9a5a2f7dff754e85365ef16154edb47f9751f0b Mon Sep 17 00:00:00 2001 From: Chris Reeder Date: Wed, 10 Apr 2024 02:48:07 +0000 Subject: [PATCH] updates rust & node versions --- .github/workflows/ci.yaml | 10 ++++------ images/build.Dockerfile | 6 +++--- images/e2e.Dockerfile | 6 +++--- ui/package.json | 6 +++--- 4 files changed, 13 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5831fbc..cbf089d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,6 +8,7 @@ on: env: RUSTFLAGS: "-Dwarnings" + BUILD_ID: ${{ github.job }}-${{ github.run_id }} jobs: nodejs: @@ -18,7 +19,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v4 with: - node-version: 21.7.1 + node-version: 21.7.3 - name: Install run: npm install --omit=dev @@ -44,8 +45,8 @@ jobs: - name: Set Rust version run: | - rustup update 1.77.1 &&\ - rustup default 1.77.1 &&\ + rustup update 1.77.2 &&\ + rustup default 1.77.2 &&\ rustup component add clippy - name: Lint @@ -61,9 +62,6 @@ jobs: runs-on: self-hosted - env: - BUILD_ID: ${{ github.job }}-${{ github.run_id }} - steps: - uses: actions/checkout@v4 diff --git a/images/build.Dockerfile b/images/build.Dockerfile index f527344..5298b64 100644 --- a/images/build.Dockerfile +++ b/images/build.Dockerfile @@ -1,9 +1,9 @@ -ARG NODE_VERSION="21.7.2" +ARG NODE_VERSION="21.7.3" FROM node:${NODE_VERSION} -ARG NPM_VERSION="10.5.1" -ARG RUST_VERSION="1.77.1" +ARG NPM_VERSION="10.5.2" +ARG RUST_VERSION="1.77.2" RUN npm install --verbose -g npm@${NPM_VERSION} diff --git a/images/e2e.Dockerfile b/images/e2e.Dockerfile index 8434750..a6c99c1 100644 --- a/images/e2e.Dockerfile +++ b/images/e2e.Dockerfile @@ -1,8 +1,8 @@ # Latest Node.js version: https://nodejs.org/en -ARG NODE_VERSION="21.7.2" +ARG NODE_VERSION="21.7.3" # Latest Chrome version: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable -ARG CHROME_VERSION="123.0.6312.105-1" +ARG CHROME_VERSION="123.0.6312.122-1" # Latest Firefox version: https://www.mozilla.org/en-US/firefox/releases/ ARG FIREFOX_VERSION="124.0.2" @@ -12,7 +12,7 @@ ARG EDGE_VERSION= ARG YARN_VERSION= ARG CYPRESS_VERSION= -FROM cypress/factory:3.5.3 +FROM cypress/factory:3.5.4 USER 1000:1000 diff --git a/ui/package.json b/ui/package.json index 3a0bdf8..b231509 100644 --- a/ui/package.json +++ b/ui/package.json @@ -17,12 +17,12 @@ "author": "Chris Reeder ", "license": "MIT", "dependencies": { - "@testing-library/dom": "^9.3.4", + "@testing-library/dom": "^10.0.0", "ace-builds": "^1.32.9", "core-js": "^3.36.1", "esbuild": "^0.20.2", "esbuild-plugin-resolve": "^2.0.0", - "eslint": "^8.57.0", + "eslint": "^9.0.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "jsdom": "^24.0.0", @@ -32,7 +32,7 @@ "yargs": "^17.7.2" }, "devDependencies": { - "cypress": "^13.7.2", + "cypress": "^13.7.3", "express": "^4.19.2", "nodemon": "^3.1.0" },