From e19d76f42cc047fa36d4b8efa6697fdaec8fca55 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Thu, 10 Aug 2023 02:18:27 +0800 Subject: [PATCH] framework_lib: Clone smbios-lib via HTTPS Signed-off-by: Daniel Schaefer --- .github/workflows/ci.yml | 29 ----------------------------- framework_lib/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 30 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3233103..fddeffd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,10 +14,6 @@ jobs: # steps: # - uses: actions/checkout@v3 -# - uses: webfactory/ssh-agent@v0.7.0 -# with: -# ssh-private-key: | -# ${{ secrets.PRIVKEY_SMBIOS_LIB }} # - name: Install dependencies # run: | # sudo apt-get update @@ -46,11 +42,6 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: | - ${{ secrets.PRIVKEY_SMBIOS_LIB }} - - name: Install dependencies run: | sudo apt-get update @@ -97,11 +88,6 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: | - ${{ secrets.PRIVKEY_SMBIOS_LIB }} - - name: Setup Rust toolchain run: rustup show @@ -130,11 +116,6 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: | - ${{ secrets.PRIVKEY_SMBIOS_LIB }} - - name: Install dependencies run: | sudo apt-get update @@ -154,11 +135,6 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: | - ${{ secrets.PRIVKEY_SMBIOS_LIB }} - - name: Install dependencies run: | sudo apt-get update @@ -184,11 +160,6 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: | - ${{ secrets.PRIVKEY_SMBIOS_LIB }} - - name: Install dependencies run: | sudo apt-get update diff --git a/framework_lib/Cargo.toml b/framework_lib/Cargo.toml index 6532a259..33a5b27c 100644 --- a/framework_lib/Cargo.toml +++ b/framework_lib/Cargo.toml @@ -52,7 +52,7 @@ no-std-compat = { version = "0.4.1", features = [ "alloc" ] } guid_macros = { path = "../guid_macros" } [dependencies.smbios-lib] -git = "ssh://git@github.com/FrameworkComputer/smbios-lib.git" +git = "https://github.com/FrameworkComputer/smbios-lib.git" branch = "no-std" optional = true default-features = false