diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec6a445bcda..9bf9cf82501 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -339,6 +339,10 @@ jobs: args: - publish --dry-run steps: + - uses: actions/setup-go@v4 + with: + go-version: '>=1.18' + - run: go version - if: ${{ matrix.os == 'windows-2019' }} uses: ilammy/setup-nasm@v1 - uses: actions/checkout@v3 diff --git a/aws-lc-fips-sys/Cargo.toml b/aws-lc-fips-sys/Cargo.toml index 2d4707f8253..d35bb7aed36 100644 --- a/aws-lc-fips-sys/Cargo.toml +++ b/aws-lc-fips-sys/Cargo.toml @@ -61,10 +61,10 @@ cmake = "0.1.48" dunce = "1.0" [target.'cfg(any(all(target_os = "linux", target_arch = "x86_64"), all(target_os = "linux", target_arch = "aarch64")))'.build-dependencies] -bindgen = { version = "0.68.1", optional = true } +bindgen = { version = "0.69.1", optional = true } [target.'cfg(not(any(all(target_os = "linux", target_arch = "x86_64"), all(target_os = "linux", target_arch = "aarch64"))))'.build-dependencies] -bindgen = { version = "0.66.1" } +bindgen = { version = "0.69.1" } [dependencies] libc = "0.2" diff --git a/aws-lc-sys/Cargo.toml b/aws-lc-sys/Cargo.toml index d1e279c2b83..254ff3df465 100644 --- a/aws-lc-sys/Cargo.toml +++ b/aws-lc-sys/Cargo.toml @@ -53,7 +53,7 @@ cmake = "0.1.48" dunce = "1.0" [target.'cfg(any(all(target_os = "macos", target_arch = "x86_64"), all(target_os = "linux", target_arch = "x86"), all(target_os = "linux", target_arch = "x86_64"), all(target_os = "linux", target_arch = "aarch64")))'.build-dependencies] -bindgen = { version = "0.68.1", optional = true } +bindgen = { version = "0.69.1", optional = true } [target.'cfg(not(any(all(target_os = "macos", target_arch = "x86_64"), all(target_os = "linux", target_arch = "x86"), all(target_os = "linux", target_arch = "x86_64"), all(target_os = "linux", target_arch = "aarch64"))))'.build-dependencies] bindgen = { version = "0.68.1" }