chore: update global workflows (#3362)
This commit is contained in:
7
.github/dependabot.yml
vendored
7
.github/dependabot.yml
vendored
@@ -5,6 +5,13 @@
|
|||||||
|
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
|
- package-ecosystem: "cargo"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
time: "07:30"
|
||||||
|
open-pull-requests-limit: 10
|
||||||
|
|
||||||
- package-ecosystem: "docker"
|
- package-ecosystem: "docker"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
|
|||||||
22
.github/workflows/common-lint.yml
vendored
22
.github/workflows/common-lint.yml
vendored
@@ -193,6 +193,28 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
- name: Rust - find Cargo.toml
|
||||||
|
id: run_cargo
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
# check if Cargo.toml exists
|
||||||
|
if [ -f "Cargo.toml" ]; then
|
||||||
|
echo "found_cargo=true" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "found_cargo=false" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Rust - setup toolchain
|
||||||
|
if: always() && steps.run_cargo.outputs.found_cargo == 'true'
|
||||||
|
uses: dtolnay/rust-toolchain@stable
|
||||||
|
with:
|
||||||
|
components: rustfmt
|
||||||
|
|
||||||
|
- name: Rust - cargo fmt
|
||||||
|
if: always() && steps.run_cargo.outputs.found_cargo == 'true'
|
||||||
|
run: |
|
||||||
|
cargo fmt -- --check
|
||||||
|
|
||||||
- name: YAML - find files
|
- name: YAML - find files
|
||||||
id: yaml_files
|
id: yaml_files
|
||||||
if: always()
|
if: always()
|
||||||
|
|||||||
Reference in New Issue
Block a user