summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/daemon.yml4
-rw-r--r--.github/workflows/rust-unused-dependencies.yml5
2 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/daemon.yml b/.github/workflows/daemon.yml
index 2300169679..6e054dbd0d 100644
--- a/.github/workflows/daemon.yml
+++ b/.github/workflows/daemon.yml
@@ -69,7 +69,9 @@ jobs:
uses: actions/checkout@v3
- name: Checkout binaries submodule
- run: git submodule update --init --depth=1 dist-assets/binaries
+ run: |
+ git config --global --add safe.directory '*'
+ git submodule update --init --depth=1 dist-assets/binaries
# The container image already has rustup and Rust, but only the stable toolchain
- name: Install Rust toolchain
diff --git a/.github/workflows/rust-unused-dependencies.yml b/.github/workflows/rust-unused-dependencies.yml
index b59720b244..e8d708667f 100644
--- a/.github/workflows/rust-unused-dependencies.yml
+++ b/.github/workflows/rust-unused-dependencies.yml
@@ -6,6 +6,7 @@ on:
- .github/workflows/rust-unused-dependencies.yml
- '**/*.rs'
- '**/Cargo.toml'
+ - 'building/*-container-image.txt'
workflow_dispatch:
env:
RUST_NIGHTLY_TOOLCHAIN: nightly-2023-01-13
@@ -40,7 +41,9 @@ jobs:
uses: actions/checkout@v3
- name: Checkout binaries submodule
- run: git submodule update --init --depth=1 dist-assets/binaries
+ run: |
+ git config --global --add safe.directory '*'
+ git submodule update --init --depth=1 dist-assets/binaries
- name: Install nightly Rust toolchain
run: rustup default $RUST_NIGHTLY_TOOLCHAIN