Skip to content

Commit

Permalink
updates deps
Browse files Browse the repository at this point in the history
  • Loading branch information
reederc42 committed Nov 26, 2024
1 parent 8b8eed9 commit 5c7fce9
Show file tree
Hide file tree
Showing 9 changed files with 187 additions and 255 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
BUILD_ID: ${{ github.job }}-${{ github.run_id }}

# Latest Node.js version: https://nodejs.org/en
NODE_VERSION: 23.0.0
NODE_VERSION: 23.3.0

# Latest Rust version: https://www.rust-lang.org/
RUST_VERSION: 1.82.0
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = "4.5.20"
serde_json = "1.0.132"
clap = "4.5.21"
serde_json = "1.0.133"
sha2 = "0.10.8"
4 changes: 2 additions & 2 deletions images/build.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Latest Node.js version: https://nodejs.org/en
ARG NODE_VERSION="23.0.0"
ARG NODE_VERSION="23.3.0"

FROM node:${NODE_VERSION}-alpine

# Latest NPM version: https://www.npmjs.com/package/npm
ARG NPM_VERSION="10.9.0"
ARG NPM_VERSION="10.9.1"

# Latest Rust version: https://www.rust-lang.org/
ARG RUST_VERSION="1.82.0"
Expand Down
10 changes: 5 additions & 5 deletions images/e2e.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# Latest Node.js version: https://nodejs.org/en
ARG NODE_VERSION="23.0.0"
ARG NODE_VERSION="23.3.0"

# Latest Chrome version: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
ARG CHROME_VERSION="130.0.6723.58-1"
ARG CHROME_VERSION="131.0.6778.85-1"

# Latest Firefox version: https://www.mozilla.org/en-US/firefox/releases/
ARG FIREFOX_VERSION="131.0.3"
ARG FIREFOX_VERSION="132.0.2"

# Disable other browsers
ARG EDGE_VERSION=
ARG YARN_VERSION=
ARG CYPRESS_VERSION=

# Latest cypress factory version: https://hub.docker.com/r/cypress/factory/tags
FROM cypress/factory:4.2.2
FROM cypress/factory:5.1.0

# Latest NPM version: https://www.npmjs.com/package/npm
ARG NPM_VERSION="10.9.0"
ARG NPM_VERSION="10.9.1"

USER root

Expand Down
8 changes: 4 additions & 4 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
regex = "1.11.0"
reqwest = "0.12.8"
clap = { version = "4.5.21", features = ["derive"] }
regex = "1.11.1"
reqwest = "0.12.9"
serde_yaml = "0.9.34"
tokio = { version = "1.40.0", features = ["full"] }
tokio = { version = "1.41.1", features = ["full"] }
Loading

0 comments on commit 5c7fce9

Please sign in to comment.