Skip to content

Commit 7d2b978

Browse files
authored
Merge branch 'main' into uss
2 parents c25bfa6 + b62c4f8 commit 7d2b978

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/audit.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,8 @@ jobs:
2727
inputs: requirements.txt docs/requirements.txt
2828

2929
- name: Check Secrets SDK Vulnerabilities
30-
working-directory: src/secrets
31-
run: cargo audit --deny warnings --ignore RUSTSEC-2024-0370 --ignore RUSTSEC-2024-0429
30+
uses: actions-rust-lang/audit@v1
31+
with:
32+
denyWarnings: true
33+
ignore: RUSTSEC-2024-0370,RUSTSEC-2024-0429
34+
workingDirectory: src/secrets

.github/workflows/sdk-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [ubuntu-latest, macos-latest, windows-latest]
15+
os: [ubuntu-22.04, macos-latest, windows-latest]
1616
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717
env:
1818
OS: ${{ matrix.os }}
@@ -33,7 +33,7 @@ jobs:
3333
- name: Lint with pydoclint
3434
run: pydoclint --exclude='.*/(build|response)/.*' src
3535
- name: Lint with pylint
36-
run: |
36+
run: |
3737
# check for Python errors
3838
pylint src --errors-only --disable=E0401,E0611 --ignore=build
3939
# check for lint

.github/workflows/sdk-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
release:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
permissions:
1919
contents: write
2020
issues: write

0 commit comments

Comments
 (0)