Skip to content

Commit

Permalink
updates rust & node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
reederc42 committed Apr 11, 2024
1 parent 9b487f9 commit c488f5e
Show file tree
Hide file tree
Showing 5 changed files with 136 additions and 592 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

env:
RUSTFLAGS: "-Dwarnings"
BUILD_ID: ${{ github.job }}-${{ github.run_id }}

jobs:
nodejs:
Expand All @@ -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
Expand All @@ -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
Expand All @@ -61,9 +62,6 @@ jobs:

runs-on: self-hosted

env:
BUILD_ID: ${{ github.job }}-${{ github.run_id }}

steps:
- uses: actions/checkout@v4

Expand Down
6 changes: 3 additions & 3 deletions images/build.Dockerfile
Original file line number Diff line number Diff line change
@@ -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}

Expand Down
6 changes: 3 additions & 3 deletions images/e2e.Dockerfile
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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

Expand Down
Loading

0 comments on commit c488f5e

Please sign in to comment.