Skip to content

Commit 3f7a3b9

Browse files
authored
chore: update dependences (#2072)
1 parent d73139f commit 3f7a3b9

File tree

35 files changed

+406
-927
lines changed

35 files changed

+406
-927
lines changed

.devcontainer/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ RUN rm /usr/bin/cc && ln -s /usr/bin/clang /usr/bin/cc
2121
# Install protoc - protobuf compiler
2222
# The one shipped with Alpine does not work
2323
ARG TARGETARCH
24-
ARG PROTOC_VERSION=25.2
24+
ARG PROTOC_VERSION=27.3
2525
RUN if [[ "$TARGETARCH" == "arm64" ]] ; then export PROTOC_ARCH=aarch_64; else export PROTOC_ARCH=x86_64; fi; \
2626
curl -Ls https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-${PROTOC_ARCH}.zip \
2727
-o /tmp/protoc.zip && \
2828
unzip -qd /opt/protoc /tmp/protoc.zip && \
2929
rm /tmp/protoc.zip && \
3030
ln -s /opt/protoc/bin/protoc /usr/bin/
3131

32-
# Install protoc v25.2+
33-
RUN curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-linux-x86_64.zip \
34-
&& unzip protoc-25.2-linux-x86_64.zip -d /usr/local \
35-
&& rm protoc-25.2-linux-x86_64.zip
32+
# Install protoc
33+
RUN curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip \
34+
&& unzip protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /usr/local \
35+
&& rm protoc-${PROTOC_VERSION}-linux-x86_64.zip
3636

3737
# Switch to vscode user
3838
USER vscode

.github/actions/rust/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ runs:
7979
shell: bash
8080
run: |
8181
curl -Lo /tmp/protoc.zip \
82-
"https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-linux-${{ steps.protoc_arch.outputs.arch }}.zip"
82+
"https://github.com/protocolbuffers/protobuf/releases/download/v27.3/protoc-27.3-linux-${{ steps.protoc_arch.outputs.arch }}.zip"
8383
unzip -o /tmp/protoc.zip -d ${HOME}/.local
8484
echo "PROTOC=${HOME}/.local/bin/protoc" >> $GITHUB_ENV
8585
export PATH="${PATH}:${HOME}/.local/bin"

0 commit comments

Comments
 (0)