diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index affbb803..9f61010a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,8 @@ jobs: - name: Install Protoc uses: arduino/setup-protoc@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Run cargo test uses: actions-rs/cargo@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f9fac01..049e663e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,8 @@ jobs: - name: Install Protoc uses: arduino/setup-protoc@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - uses: Swatinem/rust-cache@v2 @@ -58,7 +60,7 @@ jobs: build: [x86_64-linux, aarch64-macos, x86_64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc aarch64-linux, include: - build: x86_64-linux - os: ubuntu-20.04 + os: ubuntu-latest rust: stable target: x86_64-unknown-linux-gnu cross: false @@ -103,6 +105,8 @@ jobs: - name: Install Protoc uses: arduino/setup-protoc@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install ${{ matrix.rust }} toolchain uses: actions-rs/toolchain@v1 diff --git a/Cargo.lock b/Cargo.lock index 0819bf32..23b73e27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3407,7 +3407,7 @@ dependencies = [ [[package]] name = "teller" -version = "2.0.7" +version = "2.0.8" dependencies = [ "clap 4.5.4", "comfy-table", @@ -3436,7 +3436,7 @@ dependencies = [ [[package]] name = "teller-core" -version = "2.0.7" +version = "2.0.8" dependencies = [ "aho-corasick", "csv", @@ -3461,7 +3461,7 @@ dependencies = [ [[package]] name = "teller-providers" -version = "2.0.7" +version = "2.0.8" dependencies = [ "async-trait", "aws-config", diff --git a/Cargo.toml b/Cargo.toml index 0f038f8b..16ae478c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,8 +17,8 @@ readme = "./README.md" [workspace.dependencies] -teller-providers = { version = "2.0.7", path = "./teller-providers" } -teller-core = { version = "2.0.7", path = "./teller-core" } +teller-providers = { version = "2.0.8", path = "./teller-providers" } +teller-core = { version = "2.0.8", path = "./teller-core" } serde = "1" serde_json = "1" diff --git a/teller-cli/Cargo.toml b/teller-cli/Cargo.toml index 43ca5f45..6bea136c 100644 --- a/teller-cli/Cargo.toml +++ b/teller-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "teller" -version = "2.0.7" +version = "2.0.8" edition = "2021" description.workspace = true diff --git a/teller-core/Cargo.toml b/teller-core/Cargo.toml index 1f39397b..2d835338 100644 --- a/teller-core/Cargo.toml +++ b/teller-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "teller-core" -version = "2.0.7" +version = "2.0.8" edition = "2021" description.workspace = true authors.workspace = true diff --git a/teller-providers/Cargo.toml b/teller-providers/Cargo.toml index 23b33131..09973444 100644 --- a/teller-providers/Cargo.toml +++ b/teller-providers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "teller-providers" -version = "2.0.7" +version = "2.0.8" edition = "2021" description.workspace = true