From 176b69eaad757607f56749afc5d40865a07a0856 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 22:21:50 +0000 Subject: [PATCH 1/2] chore(deps): bump docker/build-push-action from 5 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release_docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_docker.yml b/.github/workflows/release_docker.yml index 2e2aff9..3615a39 100644 --- a/.github/workflows/release_docker.yml +++ b/.github/workflows/release_docker.yml @@ -124,7 +124,7 @@ jobs: # - name: Nightly build test on amd64 for pull requests # if: ${{ github.event_name == 'pull_request' }} - # uses: docker/build-push-action@v5 + # uses: docker/build-push-action@v6 # with: # context: . # build-args: ${{ matrix.build-args }} @@ -138,7 +138,7 @@ jobs: - name: Unstable build and push from develop branch if: ${{ startsWith(github.ref_name, 'feat/') && (github.event_name == 'push') }} - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . build-args: ${{ matrix.build-args }} @@ -155,7 +155,7 @@ jobs: - name: Nightly build and push from develop branch if: ${{ (github.ref_name == 'develop') && (github.event_name == 'push') }} - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . build-args: ${{ matrix.build-args }} @@ -172,7 +172,7 @@ jobs: - name: Release build and push from main branch if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref == 'develop' && github.event.pull_request.base.ref == 'main' && github.event.pull_request.merged == true }} - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . build-args: ${{ matrix.build-args }} From fd8ee25714ca7c0ea5c04c6f16e496dac9139143 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Wed, 19 Jun 2024 10:44:30 +0900 Subject: [PATCH 2/2] chore: deps rustc-hash --- rpxy-bin/Cargo.toml | 2 +- rpxy-certs/Cargo.toml | 2 +- rpxy-lib/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rpxy-bin/Cargo.toml b/rpxy-bin/Cargo.toml index d04f453..1905692 100644 --- a/rpxy-bin/Cargo.toml +++ b/rpxy-bin/Cargo.toml @@ -29,7 +29,7 @@ rpxy-lib = { path = "../rpxy-lib/", default-features = false, features = [ mimalloc = { version = "*", default-features = false } anyhow = "1.0.86" -rustc-hash = "1.1.0" +rustc-hash = "2.0.0" serde = { version = "1.0.203", default-features = false, features = ["derive"] } tokio = { version = "1.38.0", default-features = false, features = [ "net", diff --git a/rpxy-certs/Cargo.toml b/rpxy-certs/Cargo.toml index a4a179d..0cb9a87 100644 --- a/rpxy-certs/Cargo.toml +++ b/rpxy-certs/Cargo.toml @@ -15,7 +15,7 @@ default = ["http3"] http3 = [] [dependencies] -rustc-hash = { version = "1.1.0" } +rustc-hash = { version = "2.0.0" } tracing = { version = "0.1.40" } derive_builder = { version = "0.20.0" } thiserror = { version = "1.0.61" } diff --git a/rpxy-lib/Cargo.toml b/rpxy-lib/Cargo.toml index d052223..18bf4da 100644 --- a/rpxy-lib/Cargo.toml +++ b/rpxy-lib/Cargo.toml @@ -32,7 +32,7 @@ webpki-roots = ["rustls-backend", "hyper-rustls/webpki-tokio"] [dependencies] rand = "0.8.5" -rustc-hash = "1.1.0" +rustc-hash = "2.0.0" bytes = "1.6.0" derive_builder = "0.20.0" futures = { version = "0.3.30", features = ["alloc", "async-await"] }