From 969aa9b4c07804ef67168258261a77f337fcbe96 Mon Sep 17 00:00:00 2001 From: sycured <60801403+sycured@users.noreply.github.com> Date: Thu, 2 May 2024 17:05:29 -0500 Subject: [PATCH] fix: deprecation warning about `.cargo/config' + release workflow + bump 2.15.1 --- .cargo/{config => config.toml} | 0 .github/workflows/release.yml | 24 ------------------------ Cargo.lock | 14 +++++++------- Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 32 deletions(-) rename .cargo/{config => config.toml} (100%) diff --git a/.cargo/config b/.cargo/config.toml similarity index 100% rename from .cargo/config rename to .cargo/config.toml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5bd09c5..e7d2f52 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,27 +106,3 @@ jobs: file: target/${{ matrix.target }}/release/${{ matrix.artifact_name }} asset_name: ${{ matrix.asset_name }} tag: ${{ github.ref_name }} - - sbom: - runs-on: ubuntu-latest - name: Generate SBOM - steps: - - uses: actions/checkout@v2 - - name: Install stable toolchain - uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - - uses: Swatinem/rust-cache@v2 - with: - cache-on-failure: true - - name: Install cargo-cyclonedx - run: cargo install cargo-cyclonedx - - name: Generate SBOM - run: cargo cyclonedx -a --output-cdx - - name: Upload SBOM - uses: svenstaro/upload-release-action@v1-release - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: bom.cdx.xml - asset_name: bom.cdx.xml - tag: ${{ github.ref_name }} diff --git a/Cargo.lock b/Cargo.lock index 9bd1277..f8f054b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -93,9 +93,9 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "backtrace" @@ -132,9 +132,9 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "cc" -version = "1.0.96" +version = "1.0.97" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "065a29261d53ba54260972629f9ca6bffa69bac13cd1fed61420f7fa68b9f8bd" +checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4" [[package]] name = "cfg-if" @@ -372,9 +372,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if 1.0.0", "libc", @@ -498,7 +498,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "jira_cli" -version = "2.15.0" +version = "2.15.1" dependencies = [ "attohttpc", "base64", diff --git a/Cargo.toml b/Cargo.toml index 357d961..2eb5c3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jira_cli" -version = "2.15.0" +version = "2.15.1" edition = "2021" license = "GPL-2.0" readme = "README.md"