We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6476808 commit 7011f21Copy full SHA for 7011f21
2 files changed
.github/dependabot.yml
@@ -4,7 +4,16 @@ updates:
4
directory: "/"
5
schedule:
6
interval: "monthly"
7
+ groups:
8
+ cargo-dependencies:
9
+ patterns:
10
+ - "*"
11
+
12
- package-ecosystem: "github-actions"
13
14
15
16
17
+ github-actions-dependencies:
18
19
.github/workflows/release.yml
@@ -60,6 +60,12 @@ jobs:
60
# Get the machine ready to build
61
- name: Checkout Code
62
uses: actions/checkout@v4
63
+ with:
64
+ fetch-depth: 1
65
66
+ - name: Update apt-get package list
67
+ if: ${{ contains(matrix.target.runner, 'ubuntu') }}
68
+ run: sudo apt-get update
69
70
- name: Add Rust Target
71
run: rustup target add ${{ matrix.target.rustTarget }}
0 commit comments