Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependabots #229

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
142559d
Bump actions/checkout from 3.1.0 to 4.1.7
dependabot[bot] Jun 13, 2024
e6cedd1
Bump codecov/codecov-action from 4.3.1 to 4.5.0
dependabot[bot] Jun 14, 2024
4e3d785
Bump docker/build-push-action from 5 to 6
dependabot[bot] Jun 18, 2024
52d1c3d
Bump log from 0.4.21 to 0.4.22
dependabot[bot] Jul 17, 2024
1f3e1a7
Bump docker/login-action from 3.1.0 to 3.3.0
dependabot[bot] Jul 23, 2024
2f375d2
Bump serde from 1.0.201 to 1.0.204
dependabot[bot] Jul 28, 2024
910f48d
Bump clap from 4.5.4 to 4.5.13
dependabot[bot] Aug 1, 2024
14249e1
Bump serde_json from 1.0.117 to 1.0.122
dependabot[bot] Aug 2, 2024
ec0b8c1
Bump ismp-testsuite from `711fd0c` to `f560e57`
dependabot[bot] Aug 7, 2024
dd105a0
Merge remote-tracking branch 'origin/dependabot/cargo/serde_json-1.0.…
cuteolaf Aug 8, 2024
a250751
Merge remote-tracking branch 'origin/dependabot/cargo/clap-4.5.13' in…
cuteolaf Aug 8, 2024
aa874fe
Merge remote-tracking branch 'origin/dependabot/cargo/serde-1.0.204' …
cuteolaf Aug 8, 2024
6558a7a
Merge remote-tracking branch 'origin/dependabot/github_actions/docker…
cuteolaf Aug 8, 2024
9f9ba38
Merge remote-tracking branch 'origin/dependabot/cargo/log-0.4.22' int…
cuteolaf Aug 8, 2024
84d5e7c
Merge remote-tracking branch 'origin/dependabot/github_actions/docker…
cuteolaf Aug 8, 2024
53a1106
Merge remote-tracking branch 'origin/dependabot/github_actions/codeco…
cuteolaf Aug 8, 2024
151d6ad
Merge remote-tracking branch 'origin/dependabot/github_actions/action…
cuteolaf Aug 8, 2024
15a7231
Merge branch 'main' into dependabots
cuteolaf Aug 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- uses: Swatinem/rust-cache@v2
- uses: ./.github/actions/setup

Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- uses: Swatinem/rust-cache@v2
- uses: ./.github/actions/setup

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- uses: Swatinem/rust-cache@v2
- uses: ./.github/actions/setup

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- uses: Swatinem/rust-cache@v2
- uses: ./.github/actions/setup

Expand All @@ -43,7 +43,7 @@ jobs:
--exclude-files **/mock.rs **/weights/* **/weights.rs \
--out xml

- uses: codecov/codecov-action@v4.3.1
- uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: RegionX-Labs/RegionX-Node
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
check-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- uses: ./.github/actions/setup

- name: Install Rust
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
working-directory: ./e2e_tests
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
uses: actions/checkout@v4.1.7
- run: npm i
- run: npm run format
- run: npm run lint
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
persist-credentials: false
- uses: taiki-e/create-gh-release-action@v1
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
contents: write
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
persist-credentials: false

Expand Down Expand Up @@ -127,14 +127,14 @@ jobs:
steps:
# Login to Docker hub using the credentials stored in the repository secrets
- name: Log in to Docker Hub
uses: docker/login-action@v3.1.0
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out the repo
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7

# Download the binary from the previous job
- name: Download x86_64 linux binary
Expand All @@ -145,7 +145,7 @@ jobs:

# Build and push 2 images, One with the version tag and the other with latest tag
- name: Build and push Docker images
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Containerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- uses: Swatinem/rust-cache@v2
- uses: ./.github/actions/setup

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/try_runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
- uses: Swatinem/rust-cache@v2
- uses: ./.github/actions/setup

Expand Down
58 changes: 31 additions & 27 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ repository = "https://github.com/RegionX-Labs/RegionX-Node"
edition = "2021"

[workspace.dependencies]
serde = { version = "1.0.201", default-features = false }
serde = { version = "1.0.204", default-features = false }
sha2 = { version = "0.10.8", default-features = false }
clap = { version = "4.5.4" }
clap = { version = "4.5.13" }
futures = { version = "0.3.29" }
jsonrpsee = { version = "0.16.3" }
color-print = "0.3.6"
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
hex-literal = { version = "0.4.1" }
log = { version = "0.4.20", default-features = false }
log = { version = "0.4.22", default-features = false }
scale-info = { version = "2.11.3", default-features = false }
smallvec = "1.11.0"
serde_json = "1.0.117"
serde_json = "1.0.122"

# wasm
frame-benchmarking = { version = "28.0.0", default-features = false }
Expand Down
Loading