Skip to content

Commit

Permalink
Update dependencies20230123 (#110)
Browse files Browse the repository at this point in the history
* Fixed clippy warnings

* Initial update of dependencies

* Updated clap and base64 dependencies

* Fixed multiple includes on try

- Cleaned up the start-at to only parse once
- Fixed the multiple --include. Clap no longer allows multiple occurences, it only allows multiple passed on one occurence. See clap-rs/clap#2688 and https://github.com/clap-rs/clap/blob/master/CHANGELOG.md#400---2022-09-28
- This does introduce a bug that if you specify the config file immediately after --include(s) it will think it's part of the --include. The user must either pass another option after -i or put the config file before the -i

* Updated base64 dependency in config and hdr-histogram-wasm

* Updated additional rust dependencies

* Initial update of Node.js dependencies

* Updated Chart.js dependency

* Updated actions to latest versions
  • Loading branch information
tkmcmaster committed Jan 30, 2023
1 parent ffa9b69 commit 2fe329d
Show file tree
Hide file tree
Showing 44 changed files with 5,118 additions and 4,005 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-js.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
node-version: [16.x, 18.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Add Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -25,7 +25,7 @@ jobs:
toolchain: stable
override: true
- name: Add Node.js toolchain ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -29,7 +29,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -45,7 +45,7 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -61,7 +61,7 @@ jobs:
name: Cargo Deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
cross: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Linker
if: matrix.cross
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
wasm-directory: ./lib/${{ matrix.wasm-dirctory }}
test-directory: ./lib/${{ matrix.wasm-dirctory }}/tests
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -165,7 +165,7 @@ jobs:
shell: bash

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-test-server.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Create release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# https://github.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/44937/highlight/true#M5978
- name: Get the version
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
cross: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Download artifacts
uses: actions/download-artifact@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Create release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# https://github.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/44937/highlight/true#M5978
- name: Get the version
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
cross: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Download artifacts
uses: actions/download-artifact@v2
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
env:
working-directory: ./lib/config-wasm
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Download artifacts
uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
env:
working-directory: ./lib/hdr-histogram-wasm
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Download artifacts
uses: actions/download-artifact@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-guide.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Update guide
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Add Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -18,7 +18,7 @@ jobs:
toolchain: stable
override: true
- name: Add Node.js toolchain
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16.x

Expand Down

0 comments on commit 2fe329d

Please sign in to comment.