Skip to content

Commit

Permalink
chore: update global workflows (#3362)
Browse files Browse the repository at this point in the history
  • Loading branch information
LizardByte-bot authored Nov 3, 2024
1 parent 2ab7386 commit dbf4fa2
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@

version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "daily"
time: "07:30"
open-pull-requests-limit: 10

- package-ecosystem: "docker"
directory: "/"
schedule:
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/common-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,28 @@ jobs:
exit 1
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
id: yaml_files
if: always()
Expand Down

0 comments on commit dbf4fa2

Please sign in to comment.