Skip to content

Commit 35a2ccd

Browse files
Upgrade dependencies (#376)
* Update nix sources * Remove schedule from the renovate configuration * Update versions in the pre-commit configuration * Update Python requirements * Update GitHub actions * Remove trailing newline from Cargo.nix * Fix markdownlint warning * Fix GitHub build workflow * Update renovate configuration * Execute pre-commit hooks
1 parent dcef67e commit 35a2ccd

16 files changed

+73
-118
lines changed

.github/workflows/generate_prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
url: stackabletech/zookeeper-operator.git
100100
steps:
101101
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
102-
- uses: cachix/install-nix-action@6004951b182f8860210c8d6f0d808ec5b1a33d28 # tag=v25
102+
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # tag=v26
103103
- name: Install Ansible
104104
env:
105105
DEBIAN_FRONTEND: noninteractive

.github/workflows/pr_reviewdog.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
18-
- uses: reviewdog/action-actionlint@82693e9e3b239f213108d6e412506f8b54003586 # v1.39.1
18+
- uses: reviewdog/action-actionlint@51bfb044ddaed55059d16f14daedbe05a9937dc1 # v1.45.0
1919
with:
2020
github_token: ${{ secrets.GITHUB_TOKEN }}
2121

2222
flake8:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
26-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # tag=v5.0.0
26+
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # tag=v5.1.0
2727
with:
28-
python-version: "3.11"
28+
python-version: "3.12"
2929
- uses: reviewdog/action-flake8@51c2708ac3e9463b4d27d0ba7d9e3ded608a6ad3 # v3.8.0
3030
with:
3131
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -34,15 +34,15 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
37-
- uses: reviewdog/action-hadolint@f7d29ec6dd89022747bd18b5a151b62ac2f1555e # v1.36.0
37+
- uses: reviewdog/action-hadolint@13c293e6679cd4c90fa41dd5155fb067a28c0a5f # v1.41.1
3838
with:
3939
github_token: ${{ secrets.GITHUB_TOKEN }}
4040

4141
markdownlint:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
45-
- uses: reviewdog/action-markdownlint@6e02140816b5fcc7295ea7ae2a664af18190ff29 # v0.14.0
45+
- uses: reviewdog/action-markdownlint@5bc6ad5ba9e1250878f351bafcc7ac0a11dc050f # v0.18.0
4646
with:
4747
github_token: ${{ secrets.GITHUB_TOKEN }}
4848
markdownlint_flags: '**/*(*.md|*.md.j2)'
@@ -51,23 +51,23 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
54-
- uses: reviewdog/action-shellcheck@96fa305c16b0f9cc9b093af22dcd09de1c8f1c2d # v1.19.0
54+
- uses: reviewdog/action-shellcheck@72365a51bf6476fe952a117c3ff703eb7775e40a # v1.20.0
5555
with:
5656
github_token: ${{ secrets.GITHUB_TOKEN }}
5757

5858
yamllint:
5959
runs-on: ubuntu-latest
6060
steps:
6161
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
62-
- uses: reviewdog/action-yamllint@722e651555c5ca6db0edaada08e049825f74e431 # v1.8.0
62+
- uses: reviewdog/action-yamllint@8d79c3d034667db2792e328936811ed44953d691 # v1.14.0
6363
with:
6464
github_token: ${{ secrets.GITHUB_TOKEN }}
6565

6666
misspell:
6767
runs-on: ubuntu-latest
6868
steps:
6969
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
70-
- uses: reviewdog/action-misspell@4348e72b9038b006ffc37b6b0dd4421a2e9a68ef # v1.14.1
70+
- uses: reviewdog/action-misspell@5bd7be2fc7ae56a517184f5c4bbcf2fd7afe3927 # v1.17.0
7171
with:
7272
github_token: ${{ secrets.GITHUB_TOKEN }}
7373
locale: "US"
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
79-
- uses: reviewdog/action-languagetool@0d1f05459d9d88744c06c58d389f0997bab95b59 # v1.13.2
79+
- uses: reviewdog/action-languagetool@73e4df96aa7b1b741a32ee2e1fff3405d3461583 # v1.14.0
8080
with:
8181
github_token: ${{ secrets.GITHUB_TOKEN }}
8282
level: info

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# See https://pre-commit.com/hooks.html for more hooks
44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.2.0
6+
rev: v4.6.0
77
hooks:
88
- id: trailing-whitespace
99
- id: end-of-file-fixer
@@ -20,16 +20,16 @@ repos:
2020
args: ["--all-targets", "--", "-D", "warnings"]
2121

2222
- repo: https://github.com/adrienverge/yamllint
23-
rev: v1.26.3
23+
rev: v1.35.1
2424
hooks:
2525
- id: yamllint
2626

2727
- repo: https://github.com/igorshubovych/markdownlint-cli
28-
rev: v0.31.1
28+
rev: v0.40.0
2929
hooks:
3030
- id: markdownlint
3131

3232
- repo: https://github.com/PyCQA/flake8
33-
rev: 4.0.1
33+
rev: 7.0.0
3434
hooks:
3535
- id: flake8

config/repositories.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,3 @@ repositories:
8282
pretty_string: Apache ZooKeeper
8383
product_string: zookeeper
8484
url: stackabletech/zookeeper-operator.git
85-
86-

renovate.json

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,8 @@
11
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
23
"extends": [
3-
"helpers:pinGitHubActionDigests"
4+
"local>stackabletech/.github:renovate-config"
45
],
5-
"labels": [
6-
"dependencies"
7-
],
8-
"prCreation": "not-pending",
9-
"reviewers": [
10-
"team:developers"
11-
],
12-
"rollbackPrs": true,
13-
"schedule": [
14-
"after 5:00 and before 6:00 every weekday"
15-
],
16-
"timezone": "Europe/Berlin",
17-
"packageRules": [
18-
{
19-
"matchUpdateTypes": [
20-
"patch"
21-
],
22-
"groupName": "All dependencies (patch only)"
23-
}
24-
],
25-
"lockFileMaintenance": {
26-
"enabled": true,
27-
"schedule": [
28-
"after 5:00 and before 6:00 every weekday"
29-
]
30-
},
316
"github-actions": {
327
"fileMatch": ["(^template\\/\\.github\\/workflows)\\/[^/]+\\.ya?ml(.j2)?$"]
338
}

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Jinja2==3.1.2
1+
Jinja2==3.1.4
22
jinja2-cli==0.8.2
33
MarkupSafe==2.1.5

template/.github/pull_request_template.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
*Please add a description here. This will become the commit message of the merge request later.*
44

5-
65
## Definition of Done Checklist
76

87
- Not all of these items are applicable to all PRs, the author should update this template to only leave the boxes in that are relevant
98
- Please make sure all these things are done and tick the boxes
10-
9+
1110
```[tasklist]
1211
# Author
1312
- [ ] Changes are OpenShift compatible

template/.github/workflows/build.yml.j2

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
RUSTC_BOOTSTRAP: 1
3939
steps:
4040
- name: Install host dependencies
41-
uses: awalsh128/cache-apt-pkgs-action@44c33b32f808cdddd5ac0366d70595ed63661ed8 # v1.3.1
41+
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2
4242
with:
4343
packages: protobuf-compiler krb5-user libkrb5-dev libclang-dev liblzma-dev libssl-dev pkg-config
4444
version: 1.0
4545
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
4646
with:
4747
submodules: recursive
48-
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
48+
- uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
4949
with:
5050
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
5151
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
@@ -125,7 +125,7 @@ jobs:
125125
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
126126
with:
127127
submodules: recursive
128-
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
128+
- uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
129129
with:
130130
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
131131
components: rustfmt
@@ -136,14 +136,14 @@ jobs:
136136
runs-on: ubuntu-latest
137137
steps:
138138
- name: Install host dependencies
139-
uses: awalsh128/cache-apt-pkgs-action@44c33b32f808cdddd5ac0366d70595ed63661ed8 # v1.3.1
139+
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2
140140
with:
141141
packages: protobuf-compiler krb5-user libkrb5-dev libclang-dev liblzma-dev libssl-dev pkg-config
142142
version: 1.0
143143
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
144144
with:
145145
submodules: recursive
146-
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
146+
- uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
147147
with:
148148
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
149149
components: clippy
@@ -171,15 +171,15 @@ jobs:
171171
runs-on: ubuntu-latest
172172
steps:
173173
- name: Install host dependencies
174-
uses: awalsh128/cache-apt-pkgs-action@44c33b32f808cdddd5ac0366d70595ed63661ed8 # v1.3.1
174+
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2
175175
with:
176176
packages: protobuf-compiler krb5-user libkrb5-dev libclang-dev liblzma-dev libssl-dev pkg-config
177177
version: 1.0
178178
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
179179
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
180180
with:
181181
submodules: recursive
182-
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
182+
- uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
183183
with:
184184
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
185185
components: rustfmt
@@ -194,14 +194,14 @@ jobs:
194194
runs-on: ubuntu-latest
195195
steps:
196196
- name: Install host dependencies
197-
uses: awalsh128/cache-apt-pkgs-action@44c33b32f808cdddd5ac0366d70595ed63661ed8 # v1.3.1
197+
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2
198198
with:
199199
packages: protobuf-compiler krb5-user libkrb5-dev libclang-dev liblzma-dev libssl-dev pkg-config
200200
version: 1.0
201201
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
202202
with:
203203
submodules: recursive
204-
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
204+
- uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
205205
with:
206206
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
207207
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
@@ -222,9 +222,9 @@ jobs:
222222
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
223223
with:
224224
submodules: recursive
225-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # tag=v5.0.0
225+
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # tag=v5.1.0
226226
with:
227-
python-version: '3.11'
227+
python-version: '3.12'
228228
- name: Install jinja2-cli
229229
run: pip install jinja2-cli==0.8.2
230230
- name: Regenerate charts
@@ -253,7 +253,7 @@ jobs:
253253
runs-on: ubuntu-latest
254254
steps:
255255
- name: Install host dependencies
256-
uses: awalsh128/cache-apt-pkgs-action@44c33b32f808cdddd5ac0366d70595ed63661ed8 # v1.3.1
256+
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2
257257
with:
258258
packages: protobuf-compiler krb5-user libkrb5-dev libclang-dev liblzma-dev libssl-dev pkg-config
259259
version: 1.0
@@ -262,11 +262,11 @@ jobs:
262262
with:
263263
submodules: recursive
264264
- name: Set up Helm
265-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
265+
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0
266266
with:
267267
version: v3.13.3
268268
- name: Set up cargo
269-
uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
269+
uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
270270
with:
271271
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
272272
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
@@ -320,16 +320,16 @@ jobs:
320320
IMAGE_TAG: ${{ steps.printtag.outputs.IMAGE_TAG }}
321321
steps:
322322
- name: Install host dependencies
323-
uses: awalsh128/cache-apt-pkgs-action@44c33b32f808cdddd5ac0366d70595ed63661ed8 # v1.3.1
323+
uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2
324324
with:
325325
packages: protobuf-compiler krb5-user libkrb5-dev libclang-dev liblzma-dev libssl-dev pkg-config
326326
version: 1.0
327327
- name: Checkout
328328
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
329329
with:
330330
submodules: recursive
331-
- uses: cachix/install-nix-action@6004951b182f8860210c8d6f0d808ec5b1a33d28 # tag=v25
332-
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
331+
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # tag=v26
332+
- uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a
333333
with:
334334
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
335335
components: rustfmt
@@ -348,7 +348,7 @@ jobs:
348348
# default value in the makefile if called from this action, but not otherwise (i.e. when called locally).
349349
# This is needed for the HELM_REPO variable.
350350
- name: Install cosign
351-
uses: sigstore/cosign-installer@9614fae9e5c5eddabb09f90a270fcb487c9f7149 # tag=v3.3.0
351+
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # tag=v3.5.0
352352
- name: Install syft
353353
uses: anchore/sbom-action/download-syft@7ccf588e3cf3cc2611714c2eeae48550fbc17552 # v0.15.11
354354
- name: Build Docker image and Helm chart
@@ -373,7 +373,7 @@ jobs:
373373
steps:
374374
- name: Install preflight
375375
run: |
376-
wget https://github.com/redhat-openshift-ecosystem/openshift-preflight/releases/download/1.9.1/preflight-linux-amd64
376+
wget https://github.com/redhat-openshift-ecosystem/openshift-preflight/releases/download/1.9.4/preflight-linux-amd64
377377
chmod +x preflight-linux-amd64
378378
- name: Check container
379379
run: |

template/.github/workflows/pr_reviewdog.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
22-
- uses: reviewdog/action-actionlint@82693e9e3b239f213108d6e412506f8b54003586 # v1.39.1
22+
- uses: reviewdog/action-actionlint@51bfb044ddaed55059d16f14daedbe05a9937dc1 # v1.45.0
2323
with:
2424
github_token: ${{ secrets.GITHUB_TOKEN }}
2525

2626
flake8:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
30-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # tag=v5.0.0
30+
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # tag=v5.1.0
3131
with:
32-
python-version: "3.11"
32+
python-version: "3.12"
3333
- uses: reviewdog/action-flake8@51c2708ac3e9463b4d27d0ba7d9e3ded608a6ad3 # v3.8.0
3434
with:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -38,15 +38,15 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
41-
- uses: reviewdog/action-hadolint@f7d29ec6dd89022747bd18b5a151b62ac2f1555e # v1.36.0
41+
- uses: reviewdog/action-hadolint@13c293e6679cd4c90fa41dd5155fb067a28c0a5f # v1.41.1
4242
with:
4343
github_token: ${{ secrets.GITHUB_TOKEN }}
4444

4545
markdownlint:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
49-
- uses: reviewdog/action-markdownlint@6e02140816b5fcc7295ea7ae2a664af18190ff29 # v0.14.0
49+
- uses: reviewdog/action-markdownlint@5bc6ad5ba9e1250878f351bafcc7ac0a11dc050f # v0.18.0
5050
with:
5151
github_token: ${{ secrets.GITHUB_TOKEN }}
5252
markdownlint_flags: '**/*(*.md|*.md.j2)'
@@ -55,23 +55,23 @@ jobs:
5555
runs-on: ubuntu-latest
5656
steps:
5757
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
58-
- uses: reviewdog/action-shellcheck@96fa305c16b0f9cc9b093af22dcd09de1c8f1c2d # v1.19.0
58+
- uses: reviewdog/action-shellcheck@72365a51bf6476fe952a117c3ff703eb7775e40a # v1.20.0
5959
with:
6060
github_token: ${{ secrets.GITHUB_TOKEN }}
6161

6262
yamllint:
6363
runs-on: ubuntu-latest
6464
steps:
6565
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
66-
- uses: reviewdog/action-yamllint@722e651555c5ca6db0edaada08e049825f74e431 # v1.8.0
66+
- uses: reviewdog/action-yamllint@8d79c3d034667db2792e328936811ed44953d691 # v1.14.0
6767
with:
6868
github_token: ${{ secrets.GITHUB_TOKEN }}
6969

7070
misspell:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
74-
- uses: reviewdog/action-misspell@4348e72b9038b006ffc37b6b0dd4421a2e9a68ef # v1.14.1
74+
- uses: reviewdog/action-misspell@5bd7be2fc7ae56a517184f5c4bbcf2fd7afe3927 # v1.17.0
7575
with:
7676
github_token: ${{ secrets.GITHUB_TOKEN }}
7777
locale: "US"
@@ -83,7 +83,7 @@ jobs:
8383
runs-on: ubuntu-latest
8484
steps:
8585
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
86-
- uses: reviewdog/action-languagetool@0d1f05459d9d88744c06c58d389f0997bab95b59 # v1.13.2
86+
- uses: reviewdog/action-languagetool@73e4df96aa7b1b741a32ee2e1fff3405d3461583 # v1.14.0
8787
with:
8888
github_token: ${{ secrets.GITHUB_TOKEN }}
8989
level: info

0 commit comments

Comments
 (0)