diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88b3b6c..b93834e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,13 +1,13 @@ name: Run CI on: push: - branches: [ main, 'feat/**' ] + branches: [main, "feat/**"] paths-ignore: - - '**.md' # Do not need to run CI for markdown changes. + - "**.md" # Do not need to run CI for markdown changes. pull_request: - branches: [ main, 'feat/**' ] + branches: [main, "feat/**"] paths-ignore: - - '**.md' + - "**.md" jobs: ci-build: @@ -25,16 +25,16 @@ jobs: - uses: ./.github/actions/ci - - name: 'Run contract tests with hyper_rustls' + - name: "Run contract tests with hyper_rustls" uses: ./.github/actions/contract-tests with: - tls_feature: 'rustls' + tls_feature: "rustls" token: ${{ secrets.GITHUB_TOKEN }} - - name: 'Run contract tests with hyper_tls' + - name: "Run contract tests with hyper_tls" uses: ./.github/actions/contract-tests with: - tls_feature: 'tls' + tls_feature: "tls" token: ${{ secrets.GITHUB_TOKEN }} - uses: ./.github/actions/build-docs diff --git a/launchdarkly-server-sdk/Cargo.toml b/launchdarkly-server-sdk/Cargo.toml index 2001c40..def6624 100644 --- a/launchdarkly-server-sdk/Cargo.toml +++ b/launchdarkly-server-sdk/Cargo.toml @@ -38,7 +38,7 @@ hyper = { version = "0.14.19", features = ["client", "http1", "http2", "tcp"] } hyper-rustls = { version = "0.24.1" , optional = true} rand = "0.9" flate2 = { version = "1.0.35", optional = true } -aws-lc-rs = "1.13.3" +aws-lc-rs = "1.14.1" [dev-dependencies] maplit = "1.0.1"