Skip to content

Commit

Permalink
Updated to rust toolchain 1.77.1
Browse files Browse the repository at this point in the history
  • Loading branch information
UnAfraid committed Mar 30, 2024
1 parent bef85b4 commit 88798c8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-docker-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
org.opencontainers.image.documentation="https://github.com/nikiforov-soft/ble-to-mqtt"
- name: Build and push image to GHCR
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' || matrix.target == 'x86_64-pc-windows-gnu' }}
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.68
toolchain: 1.77.1
target: ${{ matrix.target }}

- name: "Install dependencies (Linux)"
Expand All @@ -49,7 +49,7 @@ jobs:
-e CC=o64-clang \
-e CXX=o64-clang++ \
-e LIBZ_SYS_STATIC=1 \
joseluisq/rust-linux-darwin-builder:1.68.0 \
joseluisq/rust-linux-darwin-builder:1.77.1 \
sh -c "cargo build --release --target x86_64-apple-darwin"
- name: "Build target (macOS arm64)"
Expand All @@ -62,7 +62,7 @@ jobs:
-e CC=oa64-clang \
-e CXX=oa64-clang++ \
-e LIBZ_SYS_STATIC=1 \
joseluisq/rust-linux-darwin-builder:1.68.0 \
joseluisq/rust-linux-darwin-builder:1.77.1 \
sh -c "cargo build --release --target aarch64-apple-darwin"
- name: "Package"
Expand All @@ -73,7 +73,7 @@ jobs:
cd -
- name: "Publish"
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: '${{ github.event.repository.name }}-*'
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.72
toolchain: 1.77.1

- name: Build
run: cargo build
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ble-to-mqtt"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.72.0-bookworm as builder
FROM rust:1.77-bookworm as builder

ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse

Expand Down

0 comments on commit 88798c8

Please sign in to comment.