Skip to content

Commit

Permalink
Merge branch 'main' into gil/cli-jsonschema
Browse files Browse the repository at this point in the history
  • Loading branch information
Gil Mizrahi authored Mar 12, 2024
2 parents e97fd6d + 5e4026b commit ebfd25c
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix ❄
uses: cachix/install-nix-action@v25
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install Nix ❄
uses: cachix/install-nix-action@v25
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -61,7 +61,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install Nix ❄
uses: cachix/install-nix-action@v25
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:

steps:
- name: Install `just`
uses: extractions/setup-just@v1
uses: extractions/setup-just@v2

- name: Log in to GitHub Container Registry 📦
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Check out ndc-postgres
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ndc-postgres

Expand All @@ -31,7 +31,7 @@ jobs:
working-directory: ndc-postgres

- name: Check out v3-engine
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hasura/v3-engine
path: v3-engine
Expand All @@ -42,7 +42,7 @@ jobs:
working-directory: v3-engine

- name: Check out v3-e2e-testing
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hasura/v3-e2e-testing
path: v3-e2e-testing
Expand All @@ -54,7 +54,7 @@ jobs:

- name: Upload logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
path: v3-e2e-testing/crates/postgres/static/logs
4 changes: 2 additions & 2 deletions .github/workflows/nix-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix ❄
uses: cachix/install-nix-action@v25
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix ❄
uses: cachix/install-nix-action@v25
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ship.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix ❄
uses: cachix/install-nix-action@v25
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Nix ❄
uses: cachix/install-nix-action@v25
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ workspace = true
ndc-postgres-configuration = { path = "../configuration" }

anyhow = "1.0.80"
clap = { version = "4.5.1", features = ["derive", "env"] }
clap = { version = "4.5.2", features = ["derive", "env"] }
schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0.114", features = ["raw_value"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/tests/tests-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0" }
anyhow = "1.0.80"
axum = "0.6.20"
axum-test-helper = "0.3.0"
env_logger = "0.11.1"
env_logger = "0.11.3"
hyper = { version = "0.14.28", features = ["tcp"] }
jsonschema = { version = "0.17.1", default-features = false, features = ["resolve-http"] }
reqwest = "0.11.24"
reqwest = "0.11.25"
schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] }
serde = "1.0.197"
serde_json = { version = "1.0.114", features = ["raw_value"] }
Expand Down

0 comments on commit ebfd25c

Please sign in to comment.