@@ -41,12 +41,15 @@ jobs:
41
41
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
42
42
- name : Cache dependencies
43
43
uses : Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
44
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
44
45
- name : Configure sccache
45
46
run : |
46
47
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
47
48
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
49
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
48
50
- name : Run sccache-cache
49
51
uses : mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af # v0.0.5
52
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
50
53
- name : Install sqlx
51
54
run : cargo install sqlx-cli --no-default-features --features postgres
52
55
- name : Run the test sqlx migrations
@@ -66,12 +69,15 @@ jobs:
66
69
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
67
70
- name : Cache dependencies
68
71
uses : Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
72
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
69
73
- name : Configure sccache
70
74
run : |
71
75
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
72
76
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
77
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
73
78
- name : Run sccache-cache
74
79
uses : mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af # v0.0.5
80
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
75
81
- run : |
76
82
rustup component add clippy
77
83
# Temporarily allowing dead-code, while denying all other warnings
@@ -104,12 +110,15 @@ jobs:
104
110
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
105
111
- name : Cache dependencies
106
112
uses : Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
113
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
107
114
- name : Configure sccache
108
115
run : |
109
116
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
110
117
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
118
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
111
119
- name : Run sccache-cache
112
120
uses : mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af # v0.0.5
121
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
113
122
- name : Install cargo-llvm-cov
114
123
uses : taiki-e/install-action@cargo-llvm-cov
115
124
- name : Install sqlx
@@ -151,12 +160,15 @@ jobs:
151
160
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
152
161
- name : Cache dependencies
153
162
uses : Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
163
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
154
164
- name : Configure sccache
155
165
run : |
156
166
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
157
167
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
168
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
158
169
- name : Run sccache-cache
159
170
uses : mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af # v0.0.5
171
+ if : ${{ !startsWith(github.head_ref, 'renovate/') }}
160
172
- name : Install sqlx
161
173
run : cargo install sqlx-cli --no-default-features --features postgres
162
174
- name : Run the test sqlx migrations
0 commit comments