mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-05 02:41:14 -05:00
Merge pull request #1748 from GSA/fix-daily-checks
Update daily checks to match PR checks
This commit is contained in:
@@ -161,7 +161,7 @@
|
|||||||
"filename": ".github/workflows/daily_checks.yml",
|
"filename": ".github/workflows/daily_checks.yml",
|
||||||
"hashed_secret": "5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8",
|
"hashed_secret": "5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8",
|
||||||
"is_verified": false,
|
"is_verified": false,
|
||||||
"line_number": 63,
|
"line_number": 71,
|
||||||
"is_secret": false
|
"is_secret": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -169,7 +169,7 @@
|
|||||||
"filename": ".github/workflows/daily_checks.yml",
|
"filename": ".github/workflows/daily_checks.yml",
|
||||||
"hashed_secret": "5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8",
|
"hashed_secret": "5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8",
|
||||||
"is_verified": false,
|
"is_verified": false,
|
||||||
"line_number": 79,
|
"line_number": 87,
|
||||||
"is_secret": false
|
"is_secret": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -384,5 +384,5 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"generated_at": "2025-05-29T17:15:40Z"
|
"generated_at": "2025-06-02T13:22:36Z"
|
||||||
}
|
}
|
||||||
|
|||||||
2
.github/workflows/checks.yml
vendored
2
.github/workflows/checks.yml
vendored
@@ -96,7 +96,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
echo "Contents of requirements.txt:"
|
echo "Contents of requirements.txt:"
|
||||||
cat requirements.txt
|
cat requirements.txt
|
||||||
- uses: pypa/gh-action-pip-audit@v1.0.8
|
- uses: pypa/gh-action-pip-audit@v1.1.0
|
||||||
with:
|
with:
|
||||||
inputs: requirements.txt
|
inputs: requirements.txt
|
||||||
ignore-vulns: |
|
ignore-vulns: |
|
||||||
|
|||||||
10
.github/workflows/daily_checks.yml
vendored
10
.github/workflows/daily_checks.yml
vendored
@@ -26,7 +26,15 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: ./.github/actions/setup-project
|
- uses: ./.github/actions/setup-project
|
||||||
- name: Create requirements.txt
|
- name: Create requirements.txt
|
||||||
run: poetry export --output requirements.txt
|
run: poetry export --output requirements_tmp.txt --without-hashes
|
||||||
|
- name: Filter requirements.txt
|
||||||
|
run: grep -v "oscrypto@ git" requirements_tmp.txt > requirements.txt
|
||||||
|
- name: Verify requirements.txt
|
||||||
|
run: ls -l requirements.txt
|
||||||
|
- name: Print requirements.txt
|
||||||
|
run: |
|
||||||
|
echo "Contents of requirements.txt:"
|
||||||
|
cat requirements.txt
|
||||||
- uses: pypa/gh-action-pip-audit@v1.1.0
|
- uses: pypa/gh-action-pip-audit@v1.1.0
|
||||||
with:
|
with:
|
||||||
inputs: requirements.txt
|
inputs: requirements.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user