Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update github/codeql-action action to v3.27.0 #817

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(deps): update github/codeql-action action to v3.27.0
renovate[bot] authored Oct 22, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit da21a7a4b917ba439bd94df997e87f2fdd354713
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -43,12 +43,12 @@ jobs:
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1

- name: Initialize CodeQL
uses: github/codeql-action/init@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
uses: github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13
uses: github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
with:
category: "/language:${{ matrix.language }}"

Unchanged files with check annotations Beta

});
});
app.get('/auth', (_req, res): unknown => res.status(204).end());

Check failure on line 26 in test/index.test.mts

GitHub Actions / TypeScript Check

No overload matches this call.
app.use((err: unknown, _req: Request, res: Response, _next: NextFunction) =>

Check failure on line 28 in test/index.test.mts

GitHub Actions / TypeScript Check

No overload matches this call.
res.status((err as IWithStatus).status ?? 500).json(err),
);
await describe('Without installOpenApiValidator', async () => {
await it('should return 200 for bad request', () => {
const server = buildServer(false, '');
return request(server).get('/test').expect(200).then(keepTSHappy);

Check failure on line 41 in test/index.test.mts

GitHub Actions / ESLint Check

Promise returned in function argument where a void return was expected.
});
});
await describe('in test mode', async () => {
await it('will validate all requests', () => {
const server = buildServer(true, 'test');
return request(server)

Check failure on line 49 in test/index.test.mts

GitHub Actions / ESLint Check

Promise returned in function argument where a void return was expected.
.get('/test')
.expect(400)
.expect(/\/query\/s/u)
await it('will thoroughly validate requests', () => {
const server = buildServer(true, 'test');
return request(server)

Check failure on line 58 in test/index.test.mts

GitHub Actions / ESLint Check

Promise returned in function argument where a void return was expected.
.get('/test?s=2012-13-31')
.expect(400)
.expect(/\/query\/s/u)
await it('will validate responses', () => {
const server = buildServer(true, 'test');
return request(server)

Check failure on line 68 in test/index.test.mts

GitHub Actions / ESLint Check

Promise returned in function argument where a void return was expected.
.get('/test?s=2012-12-31')
.expect(500)
.expect(/\/response\/debug/u)
await describe('in production mode', async () => {
await it('will validate all requests', () => {
const server = buildServer(true, 'production');
return request(server)

Check failure on line 79 in test/index.test.mts

GitHub Actions / ESLint Check

Promise returned in function argument where a void return was expected.
.get('/test')
.expect(400)
.expect(/\/query\/s/u)
await it('will not thoroughly validate requests', () => {
const server = buildServer(true, 'production');
return request(server).get('/test?s=2012-13-31').expect(200).then(keepTSHappy);

Check failure on line 88 in test/index.test.mts

GitHub Actions / ESLint Check

Promise returned in function argument where a void return was expected.
});
await it('will not validate responses', () => {
const server = buildServer(true, 'production');
return request(server).get('/test?s=2012-12-31').expect(200).then(keepTSHappy);

Check failure on line 93 in test/index.test.mts

GitHub Actions / ESLint Check

Promise returned in function argument where a void return was expected.
});
});
});