diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a30d2b18..95876a8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: include: # Note: Specifying the version of valgrind and cargo-binstall is not supported. - os: ubuntu-20.04 - tool: cargo-hack@0.5.24,cargo-llvm-cov@0.5.2,cargo-minimal-versions@0.1.8,parse-changelog@0.5.2,cargo-udeps@0.1.35,cargo-valgrind@2.1.0,cargo-deny@0.13.5,cross@0.2.4,nextest@0.9.11,protoc@3.21.11,shellcheck@0.9.0,shfmt@3.6.0,wasm-pack@0.10.3,wasmtime@3.0.1,mdbook@0.4.22,mdbook-linkcheck@0.7.7,cargo-watch@8.1.1 + tool: cargo-hack@0.5.24,cargo-llvm-cov@0.5.2,cargo-minimal-versions@0.1.8,parse-changelog@0.5.2,cargo-udeps@0.1.35,cargo-valgrind@2.1.0,cargo-deny@0.13.5,cross@0.2.4,nextest@0.9.11,protoc@3.21.12,shellcheck@0.9.0,shfmt@3.6.0,wasm-pack@0.10.3,wasmtime@3.0.1,mdbook@0.4.22,mdbook-linkcheck@0.7.7,cargo-watch@8.1.1 # Nextest supports basic version ranges as well. For other tools, this will be supported by https://github.com/taiki-e/install-action/pull/27. - os: ubuntu-20.04 tool: nextest@0.9 diff --git a/CHANGELOG.md b/CHANGELOG.md index ad8473b8..5d9f3506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +- Update `protoc@latest` to 3.21.12. - Improve support for Fedora/RHEL based containers/self-hosted runners. ## [1.16.0] - 2022-12-14 diff --git a/main.sh b/main.sh index 1e506648..61bc49f9 100755 --- a/main.sh +++ b/main.sh @@ -411,7 +411,7 @@ for tool in "${tools[@]}"; do ;; protoc) # https://github.com/protocolbuffers/protobuf/releases - latest_version="3.21.11" + latest_version="3.21.12" repo="protocolbuffers/protobuf" case "${version}" in latest) version="${latest_version}" ;;