Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pgarbe committed Oct 4, 2022
1 parent b2fc25d commit cbaa500
Show file tree
Hide file tree
Showing 11 changed files with 1,351 additions and 1,110 deletions.
1 change: 1 addition & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 12 additions & 6 deletions .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 15 additions & 5 deletions .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions .github/workflows/upgrade-main.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 17 additions & 1 deletion .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 1 addition & 10 deletions .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 16 additions & 15 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions test/docker-adapter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as docker from '../src/lambda/docker-adapter';
test('Docker image tags are loaded through pagination', async () => {

// WHEN
let tags = await docker.getDockerImageTags('datadog/agent');
const tags = await docker.getDockerImageTags('datadog/agent');

// THEN
expect(tags.length).toBeGreaterThan(100);
Expand All @@ -15,10 +15,10 @@ test('Docker image tags are loaded through pagination', async () => {
test('Docker library image tags are loaded through pagination', async () => {

// WHEN
let tags = await docker.getDockerImageTags('amazonlinux');
const tags = await docker.getDockerImageTags('amazonlinux');

// THEN
expect(tags.length).toBeGreaterThan(0);
expect(tags.length).toBeGreaterThan(100);
expect(tags[0].digest?.length).toBeGreaterThan(0);
expect(tags[0].tag.length).toBeGreaterThan(0);

Expand All @@ -28,7 +28,7 @@ test('Docker library image tags are loaded through pagination', async () => {
test('Docker library image tags include only amd64/linux images', async () => {

// WHEN
let tags = await docker.getDockerImageTags('mongo');
const tags = await docker.getDockerImageTags('mongo');

// THEN
expect(tags.filter(t => t.tag === '4.2.4').length).toBe(0); // mongo:4.2.4 has only amd64/windows images
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
Expand Down
Loading

0 comments on commit cbaa500

Please sign in to comment.