mirror of
https://github.com/docker/login-action.git
synced 2026-07-06 19:01:43 +00:00
Compare commits
12 Commits
v4.3.0
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d87b76f92 | ||
|
|
3bc74c6b6c | ||
|
|
af1e73f918 | ||
|
|
da722bde43 | ||
|
|
2916ad60bd | ||
|
|
ca0a662f78 | ||
|
|
c455755a57 | ||
|
|
48351901f8 | ||
|
|
992421c6e6 | ||
|
|
b249b43765 | ||
|
|
1b67977736 | ||
|
|
9d49d6a323 |
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -23,7 +23,7 @@ jobs:
|
|||||||
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||||
-
|
-
|
||||||
name: Test
|
name: Test
|
||||||
uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0
|
uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0
|
||||||
with:
|
with:
|
||||||
source: .
|
source: .
|
||||||
targets: test
|
targets: test
|
||||||
|
|||||||
2
.github/workflows/update-dist.yml
vendored
2
.github/workflows/update-dist.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
|||||||
token: ${{ steps.docker-read-app.outputs.token }}
|
token: ${{ steps.docker-read-app.outputs.token }}
|
||||||
-
|
-
|
||||||
name: Build
|
name: Build
|
||||||
uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0
|
uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0
|
||||||
with:
|
with:
|
||||||
source: .
|
source: .
|
||||||
targets: build
|
targets: build
|
||||||
|
|||||||
4
.github/workflows/validate.yml
vendored
4
.github/workflows/validate.yml
vendored
@@ -26,7 +26,7 @@ jobs:
|
|||||||
-
|
-
|
||||||
name: Generate matrix
|
name: Generate matrix
|
||||||
id: generate
|
id: generate
|
||||||
uses: docker/bake-action/subaction/matrix@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0
|
uses: docker/bake-action/subaction/matrix@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0
|
||||||
with:
|
with:
|
||||||
target: validate
|
target: validate
|
||||||
|
|
||||||
@@ -41,6 +41,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Validate
|
name: Validate
|
||||||
uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7.2.0
|
uses: docker/bake-action@d3418bd7d0e9324001bca92fa8ba175ea7e6dc9b # v7.3.0
|
||||||
with:
|
with:
|
||||||
targets: ${{ matrix.target }}
|
targets: ${{ matrix.target }}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {afterEach, expect, test} from 'vitest';
|
import {afterEach, expect, test, vi} from 'vitest';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
|
|
||||||
import {Buildx} from '@docker/actions-toolkit/lib/buildx/buildx.js';
|
import {Buildx} from '@docker/actions-toolkit/lib/buildx/buildx.js';
|
||||||
@@ -6,6 +6,7 @@ import {Buildx} from '@docker/actions-toolkit/lib/buildx/buildx.js';
|
|||||||
import {getAuthList, getInputs} from '../src/context.js';
|
import {getAuthList, getInputs} from '../src/context.js';
|
||||||
|
|
||||||
afterEach(() => {
|
afterEach(() => {
|
||||||
|
vi.restoreAllMocks();
|
||||||
for (const key of Object.keys(process.env)) {
|
for (const key of Object.keys(process.env)) {
|
||||||
if (key.startsWith('INPUT_')) {
|
if (key.startsWith('INPUT_')) {
|
||||||
delete process.env[key];
|
delete process.env[key];
|
||||||
@@ -33,3 +34,37 @@ test('getAuthList uses the default Docker Hub registry when computing scoped con
|
|||||||
configDir: path.join(Buildx.configDir, 'config', 'registry-1.docker.io', 'myscope')
|
configDir: path.join(Buildx.configDir, 'config', 'registry-1.docker.io', 'myscope')
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('getAuthList skips secret masking when registry-auth password is absent', async () => {
|
||||||
|
const stdoutWriteSpy = vi.spyOn(process.stdout, 'write').mockImplementation(() => true);
|
||||||
|
const [auth] = getAuthList({
|
||||||
|
registry: '',
|
||||||
|
username: '',
|
||||||
|
password: '',
|
||||||
|
scope: '',
|
||||||
|
ecr: '',
|
||||||
|
logout: true,
|
||||||
|
registryAuth: '- registry: public.ecr.aws\n'
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(stdoutWriteSpy.mock.calls.map(call => call[0]).join('')).not.toContain('::add-mask::');
|
||||||
|
expect(auth).toMatchObject({
|
||||||
|
registry: 'public.ecr.aws',
|
||||||
|
ecr: 'auto'
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('getAuthList masks registry-auth password when present', async () => {
|
||||||
|
const stdoutWriteSpy = vi.spyOn(process.stdout, 'write').mockImplementation(() => true);
|
||||||
|
getAuthList({
|
||||||
|
registry: '',
|
||||||
|
username: '',
|
||||||
|
password: '',
|
||||||
|
scope: '',
|
||||||
|
ecr: '',
|
||||||
|
logout: true,
|
||||||
|
registryAuth: '- registry: ghcr.io\n username: dbowie\n password: groundcontrol\n'
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(stdoutWriteSpy.mock.calls.map(call => call[0]).join('')).toContain('::add-mask::groundcontrol');
|
||||||
|
});
|
||||||
|
|||||||
305
dist/index.cjs
generated
vendored
305
dist/index.cjs
generated
vendored
File diff suppressed because one or more lines are too long
8
dist/index.cjs.map
generated
vendored
8
dist/index.cjs.map
generated
vendored
File diff suppressed because one or more lines are too long
685
dist/licenses.txt
generated
vendored
685
dist/licenses.txt
generated
vendored
@@ -3,7 +3,7 @@ https://www.npmjs.com/package/generate-license-file
|
|||||||
|
|
||||||
The following npm package may be included in this product:
|
The following npm package may be included in this product:
|
||||||
|
|
||||||
- @aws/lambda-invoke-store@0.2.3
|
- @aws/lambda-invoke-store@0.3.0
|
||||||
|
|
||||||
This package contains the following license:
|
This package contains the following license:
|
||||||
|
|
||||||
@@ -184,217 +184,6 @@ Apache License
|
|||||||
|
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
The following npm packages may be included in this product:
|
|
||||||
|
|
||||||
- @aws-crypto/sha256-browser@5.2.0
|
|
||||||
- @aws-crypto/supports-web-crypto@5.2.0
|
|
||||||
|
|
||||||
These packages each contain the following license:
|
|
||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
|
|
||||||
-----------
|
|
||||||
|
|
||||||
The following npm packages may be included in this product:
|
The following npm packages may be included in this product:
|
||||||
|
|
||||||
- @sigstore/bundle@5.0.0
|
- @sigstore/bundle@5.0.0
|
||||||
@@ -2124,219 +1913,8 @@ Apache License
|
|||||||
|
|
||||||
The following npm packages may be included in this product:
|
The following npm packages may be included in this product:
|
||||||
|
|
||||||
- @aws-crypto/crc32@5.2.0
|
- @aws-sdk/client-ecr-public@3.1079.0
|
||||||
- @aws-crypto/util@5.2.0
|
- @aws-sdk/client-ecr@3.1079.0
|
||||||
|
|
||||||
These packages each contain the following license:
|
|
||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright {yyyy} {name of copyright owner}
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
|
|
||||||
-----------
|
|
||||||
|
|
||||||
The following npm packages may be included in this product:
|
|
||||||
|
|
||||||
- @aws-sdk/client-ecr-public@3.1076.0
|
|
||||||
- @aws-sdk/client-ecr@3.1076.0
|
|
||||||
|
|
||||||
These packages each contain the following license:
|
These packages each contain the following license:
|
||||||
|
|
||||||
@@ -2546,11 +2124,9 @@ Apache License
|
|||||||
|
|
||||||
The following npm packages may be included in this product:
|
The following npm packages may be included in this product:
|
||||||
|
|
||||||
- @aws-sdk/signature-v4-multi-region@3.996.36
|
- @aws-sdk/signature-v4-multi-region@3.996.38
|
||||||
- @smithy/core@3.27.0
|
- @smithy/core@3.29.1
|
||||||
- @smithy/core@3.28.0
|
- @smithy/types@4.15.1
|
||||||
- @smithy/types@2.11.0
|
|
||||||
- @smithy/types@4.15.0
|
|
||||||
|
|
||||||
These packages each contain the following license:
|
These packages each contain the following license:
|
||||||
|
|
||||||
@@ -3599,7 +3175,7 @@ software or this license, under any kind of legal claim.***
|
|||||||
|
|
||||||
The following npm package may be included in this product:
|
The following npm package may be included in this product:
|
||||||
|
|
||||||
- @aws-sdk/core@3.974.24
|
- @aws-sdk/core@3.974.27
|
||||||
|
|
||||||
This package contains the following license:
|
This package contains the following license:
|
||||||
|
|
||||||
@@ -3807,233 +3383,18 @@ Apache License
|
|||||||
|
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
The following npm package may be included in this product:
|
|
||||||
|
|
||||||
- @aws-crypto/sha256-js@5.2.0
|
|
||||||
|
|
||||||
This package contains the following license:
|
|
||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright {yyyy} {name of copyright owner}
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
|
|
||||||
-----------
|
|
||||||
|
|
||||||
The following npm packages may be included in this product:
|
The following npm packages may be included in this product:
|
||||||
|
|
||||||
- @aws-sdk/credential-provider-env@3.972.50
|
- @aws-sdk/credential-provider-env@3.972.53
|
||||||
- @aws-sdk/credential-provider-ini@3.972.57
|
- @aws-sdk/credential-provider-ini@3.972.60
|
||||||
- @aws-sdk/credential-provider-node@3.972.59
|
- @aws-sdk/credential-provider-node@3.972.62
|
||||||
- @aws-sdk/token-providers@3.1076.0
|
- @aws-sdk/token-providers@3.1079.0
|
||||||
- @aws-sdk/types@3.523.0
|
- @aws-sdk/types@3.973.15
|
||||||
- @aws-sdk/types@3.973.14
|
- @aws-sdk/xml-builder@3.972.33
|
||||||
- @aws-sdk/util-locate-window@3.37.0
|
- @smithy/credential-provider-imds@4.4.6
|
||||||
- @aws-sdk/xml-builder@3.972.32
|
- @smithy/fetch-http-handler@5.6.3
|
||||||
- @smithy/credential-provider-imds@4.4.4
|
- @smithy/node-http-handler@4.9.3
|
||||||
- @smithy/fetch-http-handler@5.6.1
|
- @smithy/signature-v4@5.6.2
|
||||||
- @smithy/is-array-buffer@2.2.0
|
|
||||||
- @smithy/node-http-handler@4.9.1
|
|
||||||
- @smithy/signature-v4@5.6.0
|
|
||||||
- @smithy/util-buffer-from@2.2.0
|
|
||||||
- @smithy/util-utf8@2.3.0
|
|
||||||
|
|
||||||
These packages each contain the following license:
|
These packages each contain the following license:
|
||||||
|
|
||||||
@@ -4243,9 +3604,9 @@ Apache License
|
|||||||
|
|
||||||
The following npm packages may be included in this product:
|
The following npm packages may be included in this product:
|
||||||
|
|
||||||
- @aws-sdk/credential-provider-process@3.972.50
|
- @aws-sdk/credential-provider-process@3.972.53
|
||||||
- @aws-sdk/credential-provider-sso@3.972.56
|
- @aws-sdk/credential-provider-sso@3.972.59
|
||||||
- @aws-sdk/credential-provider-web-identity@3.972.56
|
- @aws-sdk/credential-provider-web-identity@3.972.59
|
||||||
|
|
||||||
These packages each contain the following license:
|
These packages each contain the following license:
|
||||||
|
|
||||||
@@ -4519,9 +3880,9 @@ END OF TERMS AND CONDITIONS
|
|||||||
|
|
||||||
The following npm packages may be included in this product:
|
The following npm packages may be included in this product:
|
||||||
|
|
||||||
- @aws-sdk/credential-provider-http@3.972.52
|
- @aws-sdk/credential-provider-http@3.972.55
|
||||||
- @aws-sdk/credential-provider-login@3.972.56
|
- @aws-sdk/credential-provider-login@3.972.59
|
||||||
- @aws-sdk/nested-clients@3.997.24
|
- @aws-sdk/nested-clients@3.997.27
|
||||||
- @sigstore/verify@4.1.0
|
- @sigstore/verify@4.1.0
|
||||||
|
|
||||||
These packages each contain the following license:
|
These packages each contain the following license:
|
||||||
|
|||||||
@@ -24,8 +24,8 @@
|
|||||||
"packageManager": "yarn@4.15.0",
|
"packageManager": "yarn@4.15.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^3.0.1",
|
"@actions/core": "^3.0.1",
|
||||||
"@aws-sdk/client-ecr": "^3.1076.0",
|
"@aws-sdk/client-ecr": "^3.1079.0",
|
||||||
"@aws-sdk/client-ecr-public": "^3.1076.0",
|
"@aws-sdk/client-ecr-public": "^3.1079.0",
|
||||||
"@docker/actions-toolkit": "^0.92.0",
|
"@docker/actions-toolkit": "^0.92.0",
|
||||||
"http-proxy-agent": "^9.1.0",
|
"http-proxy-agent": "^9.1.0",
|
||||||
"https-proxy-agent": "^9.1.0",
|
"https-proxy-agent": "^9.1.0",
|
||||||
|
|||||||
@@ -53,7 +53,9 @@ export function getAuthList(inputs: Inputs): Array<Auth> {
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
auths = (yaml.load(inputs.registryAuth) as Array<Auth>).map(auth => {
|
auths = (yaml.load(inputs.registryAuth) as Array<Auth>).map(auth => {
|
||||||
core.setSecret(auth.password); // redacted in workflow logs
|
if (auth.password) {
|
||||||
|
core.setSecret(auth.password); // redacted in workflow logs
|
||||||
|
}
|
||||||
const registry = auth.registry || 'docker.io';
|
const registry = auth.registry || 'docker.io';
|
||||||
return {
|
return {
|
||||||
registry,
|
registry,
|
||||||
|
|||||||
525
yarn.lock
525
yarn.lock
@@ -170,326 +170,244 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-crypto/crc32@npm:5.2.0":
|
"@aws-sdk/client-ecr-public@npm:^3.1079.0":
|
||||||
version: 5.2.0
|
version: 3.1079.0
|
||||||
resolution: "@aws-crypto/crc32@npm:5.2.0"
|
resolution: "@aws-sdk/client-ecr-public@npm:3.1079.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-crypto/util": "npm:^5.2.0"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-sdk/types": "npm:^3.222.0"
|
"@aws-sdk/credential-provider-node": "npm:^3.972.62"
|
||||||
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
|
"@smithy/core": "npm:^3.29.0"
|
||||||
|
"@smithy/fetch-http-handler": "npm:^5.6.2"
|
||||||
|
"@smithy/node-http-handler": "npm:^4.9.2"
|
||||||
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
|
checksum: 10/fac4c48cd84a870140b9b5975f7dca027bd9a769e7a2215ea350b4c97ad6db0514ecc732a197922e282127770cd0f83d82773e3262e6162aec5749794e5af044
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-crypto/sha256-browser@npm:5.2.0":
|
"@aws-sdk/client-ecr@npm:^3.1079.0":
|
||||||
version: 5.2.0
|
version: 3.1079.0
|
||||||
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
|
resolution: "@aws-sdk/client-ecr@npm:3.1079.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-crypto/sha256-js": "npm:^5.2.0"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
|
"@aws-sdk/credential-provider-node": "npm:^3.972.62"
|
||||||
"@aws-crypto/util": "npm:^5.2.0"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@aws-sdk/types": "npm:^3.222.0"
|
"@smithy/core": "npm:^3.29.0"
|
||||||
"@aws-sdk/util-locate-window": "npm:^3.0.0"
|
"@smithy/fetch-http-handler": "npm:^5.6.2"
|
||||||
"@smithy/util-utf8": "npm:^2.0.0"
|
"@smithy/node-http-handler": "npm:^4.9.2"
|
||||||
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
|
checksum: 10/c93afd9a631fd371d8527ac28b497166e3453e36c1115c78202141c91676e5ddaa26dccfffb1f34b3ca9361292873eaa154623431e99bf7b62bd6a9a10a30c39
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
|
"@aws-sdk/core@npm:^3.974.27":
|
||||||
version: 5.2.0
|
version: 3.974.27
|
||||||
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
|
resolution: "@aws-sdk/core@npm:3.974.27"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-crypto/util": "npm:^5.2.0"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@aws-sdk/types": "npm:^3.222.0"
|
"@aws-sdk/xml-builder": "npm:^3.972.33"
|
||||||
tslib: "npm:^2.6.2"
|
"@aws/lambda-invoke-store": "npm:^0.3.0"
|
||||||
checksum: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
|
"@smithy/core": "npm:^3.29.0"
|
||||||
languageName: node
|
"@smithy/signature-v4": "npm:^5.6.1"
|
||||||
linkType: hard
|
"@smithy/types": "npm:^4.15.1"
|
||||||
|
|
||||||
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
|
|
||||||
version: 5.2.0
|
|
||||||
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
|
|
||||||
dependencies:
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-crypto/util@npm:^5.2.0":
|
|
||||||
version: 5.2.0
|
|
||||||
resolution: "@aws-crypto/util@npm:5.2.0"
|
|
||||||
dependencies:
|
|
||||||
"@aws-sdk/types": "npm:^3.222.0"
|
|
||||||
"@smithy/util-utf8": "npm:^2.0.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-sdk/client-ecr-public@npm:^3.1076.0":
|
|
||||||
version: 3.1076.0
|
|
||||||
resolution: "@aws-sdk/client-ecr-public@npm:3.1076.0"
|
|
||||||
dependencies:
|
|
||||||
"@aws-crypto/sha256-browser": "npm:5.2.0"
|
|
||||||
"@aws-crypto/sha256-js": "npm:5.2.0"
|
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
|
||||||
"@aws-sdk/credential-provider-node": "npm:^3.972.59"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
|
||||||
"@smithy/core": "npm:^3.27.0"
|
|
||||||
"@smithy/fetch-http-handler": "npm:^5.6.0"
|
|
||||||
"@smithy/node-http-handler": "npm:^4.9.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/0fca29edaa3a70a9162b92cb26000918d7854fa4516afc1c58881044a1f69e83c8f0936d0ee96e352348659293594d234ccc7c50397a67557c69d7681f3e9d90
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-sdk/client-ecr@npm:^3.1076.0":
|
|
||||||
version: 3.1076.0
|
|
||||||
resolution: "@aws-sdk/client-ecr@npm:3.1076.0"
|
|
||||||
dependencies:
|
|
||||||
"@aws-crypto/sha256-browser": "npm:5.2.0"
|
|
||||||
"@aws-crypto/sha256-js": "npm:5.2.0"
|
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
|
||||||
"@aws-sdk/credential-provider-node": "npm:^3.972.59"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
|
||||||
"@smithy/core": "npm:^3.27.0"
|
|
||||||
"@smithy/fetch-http-handler": "npm:^5.6.0"
|
|
||||||
"@smithy/node-http-handler": "npm:^4.9.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/d04627d16f5423f5edd5bcf5e4396b0cc9d343e9ed33aee44b42f7d061f98423dbe68ccb424830482a3f52d9d710797ca535396cd90662bd59f728f9cdede32b
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-sdk/core@npm:^3.974.24":
|
|
||||||
version: 3.974.24
|
|
||||||
resolution: "@aws-sdk/core@npm:3.974.24"
|
|
||||||
dependencies:
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
|
||||||
"@aws-sdk/xml-builder": "npm:^3.972.32"
|
|
||||||
"@aws/lambda-invoke-store": "npm:^0.2.2"
|
|
||||||
"@smithy/core": "npm:^3.27.0"
|
|
||||||
"@smithy/signature-v4": "npm:^5.5.3"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
bowser: "npm:^2.11.0"
|
bowser: "npm:^2.11.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/fdfddb0a88ab997f09cb5515a581d96e5d3d6a524b31cbf5a708a2dfaf543979523a78db7f014fbb01b10ba6b87530c4abc8cd1e1463f0e1a4e5cba88ccce40c
|
checksum: 10/1157bc6d62f691efbc8009e38223025dfd1d050facdf9647ec1998dd0d791abf23839fb32fc2b21d9b3f6026b2228c6480342528dac9f5a34b86d7186c606b75
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-env@npm:^3.972.50":
|
"@aws-sdk/credential-provider-env@npm:^3.972.53":
|
||||||
version: 3.972.50
|
version: 3.972.53
|
||||||
resolution: "@aws-sdk/credential-provider-env@npm:3.972.50"
|
resolution: "@aws-sdk/credential-provider-env@npm:3.972.53"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.29.0"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/92bad36f62f6d337be0cc33ef7db35c7ad7540d5883f9a67664de1236fd6e7cf5200a8a1dafe7841d2d148f390e47206118b2c643ed0214466c906d94b687851
|
checksum: 10/b88df55138ba3d04ab84a5d6fce55d6974edbf68fd7f6a95ad2ad7312c1f4d008e117815141f2b9c45c083d78fb368cbf05b3063f8c2df4653b861edd3992fe8
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-http@npm:^3.972.52":
|
"@aws-sdk/credential-provider-http@npm:^3.972.55":
|
||||||
version: 3.972.52
|
version: 3.972.55
|
||||||
resolution: "@aws-sdk/credential-provider-http@npm:3.972.52"
|
resolution: "@aws-sdk/credential-provider-http@npm:3.972.55"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.29.0"
|
||||||
"@smithy/fetch-http-handler": "npm:^5.6.0"
|
"@smithy/fetch-http-handler": "npm:^5.6.2"
|
||||||
"@smithy/node-http-handler": "npm:^4.9.0"
|
"@smithy/node-http-handler": "npm:^4.9.2"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/ead75fd4f28ba3e598e7548357a9435d9e2367977f7147430c485d7c62a6f36a875c198118ed05c09870beb912533148ac20eddab2ac913085bc0ca7ddd760a3
|
checksum: 10/fc5ec1f8b76692959f03d074506040341d1b32fc5d2ad2798a913bb1962830b1837864f69c9de336f2f8bdb26603847d5b0f72269a1ac45e6f4a53be95ba1dff
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-ini@npm:^3.972.57":
|
"@aws-sdk/credential-provider-ini@npm:^3.972.60":
|
||||||
version: 3.972.57
|
version: 3.972.60
|
||||||
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.57"
|
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.60"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-sdk/credential-provider-env": "npm:^3.972.50"
|
"@aws-sdk/credential-provider-env": "npm:^3.972.53"
|
||||||
"@aws-sdk/credential-provider-http": "npm:^3.972.52"
|
"@aws-sdk/credential-provider-http": "npm:^3.972.55"
|
||||||
"@aws-sdk/credential-provider-login": "npm:^3.972.56"
|
"@aws-sdk/credential-provider-login": "npm:^3.972.59"
|
||||||
"@aws-sdk/credential-provider-process": "npm:^3.972.50"
|
"@aws-sdk/credential-provider-process": "npm:^3.972.53"
|
||||||
"@aws-sdk/credential-provider-sso": "npm:^3.972.56"
|
"@aws-sdk/credential-provider-sso": "npm:^3.972.59"
|
||||||
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.56"
|
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.59"
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
"@aws-sdk/nested-clients": "npm:^3.997.27"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.29.0"
|
||||||
"@smithy/credential-provider-imds": "npm:^4.4.3"
|
"@smithy/credential-provider-imds": "npm:^4.4.5"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/df6701f74a2be48570faf33804f9999d1f7c6bd5de7bb766a55ff0831e83b95017e72e2964e655595244e5eef60ea325a8597e87b016bc22bbd14620af4c963e
|
checksum: 10/19d8f8159fd51e9bea5d142b63a4897566f63f6dae180338bfcf6f78a87840ae14acf9fa41508b665d64a84ea69776164647d6adc9857f1ade8729c6981c478a
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-login@npm:^3.972.56":
|
"@aws-sdk/credential-provider-login@npm:^3.972.59":
|
||||||
version: 3.972.56
|
|
||||||
resolution: "@aws-sdk/credential-provider-login@npm:3.972.56"
|
|
||||||
dependencies:
|
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
|
||||||
"@smithy/core": "npm:^3.27.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/5394e50c07da78de8e1643f898c308537f1454ccf0e02b00cd7af9d2c03961058cf6f4cf585b79eb23ff586ed82bbd1e959776a5aed0e780635ba38f58ff1a12
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-node@npm:^3.972.59":
|
|
||||||
version: 3.972.59
|
version: 3.972.59
|
||||||
resolution: "@aws-sdk/credential-provider-node@npm:3.972.59"
|
resolution: "@aws-sdk/credential-provider-login@npm:3.972.59"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/credential-provider-env": "npm:^3.972.50"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-sdk/credential-provider-http": "npm:^3.972.52"
|
"@aws-sdk/nested-clients": "npm:^3.997.27"
|
||||||
"@aws-sdk/credential-provider-ini": "npm:^3.972.57"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@aws-sdk/credential-provider-process": "npm:^3.972.50"
|
"@smithy/core": "npm:^3.29.0"
|
||||||
"@aws-sdk/credential-provider-sso": "npm:^3.972.56"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.56"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
|
||||||
"@smithy/core": "npm:^3.27.0"
|
|
||||||
"@smithy/credential-provider-imds": "npm:^4.4.3"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/d35e5e27f581d864c5cbb9a30345eb9ac5f26b3604e7529448d3d5f149a066624ae99cc89ed5b90591a91f575b747729d09840a640c422d72b8ba6a408cef57e
|
checksum: 10/f872825321d9d7327943481d9d9f0647dfe812bed3a2597b2afe8e93b9168be03f1cf7d932c5a795875add619ca52341b925b09f903c21930d745dd12420a83b
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-process@npm:^3.972.50":
|
"@aws-sdk/credential-provider-node@npm:^3.972.62":
|
||||||
version: 3.972.50
|
version: 3.972.62
|
||||||
resolution: "@aws-sdk/credential-provider-process@npm:3.972.50"
|
resolution: "@aws-sdk/credential-provider-node@npm:3.972.62"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/credential-provider-env": "npm:^3.972.53"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/credential-provider-http": "npm:^3.972.55"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@aws-sdk/credential-provider-ini": "npm:^3.972.60"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@aws-sdk/credential-provider-process": "npm:^3.972.53"
|
||||||
|
"@aws-sdk/credential-provider-sso": "npm:^3.972.59"
|
||||||
|
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.59"
|
||||||
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
|
"@smithy/core": "npm:^3.29.0"
|
||||||
|
"@smithy/credential-provider-imds": "npm:^4.4.5"
|
||||||
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/272e20945a7f18e7e8dbf47771421e347430dde2a623358188d347df02c4d56b50a745d1166b7a251223ccfbd321358d762ffeb641cb5dde3f88765e9c574638
|
checksum: 10/743c81cb69219750e773d8bc6985aed01462fc4cd927d1591b70d05614bc87321454e9cf6bb3afc7a9bcc0d700ef41814d238a7b82751f4cb517f7f6052f3c71
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-sso@npm:^3.972.56":
|
"@aws-sdk/credential-provider-process@npm:^3.972.53":
|
||||||
version: 3.972.56
|
version: 3.972.53
|
||||||
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.56"
|
resolution: "@aws-sdk/credential-provider-process@npm:3.972.53"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@aws-sdk/token-providers": "npm:3.1076.0"
|
"@smithy/core": "npm:^3.29.0"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/e1eac42cccd6842b089fbd59616ff3cdc3e0957eef1b408cb14b56312f5649eb9acbad260705f26608096e7014ffc9f3cb216583af9ba91f8bb42ab8be7dd9e7
|
checksum: 10/868610d88ef5c47ccf64d88b06c6de55a6cbf346be9102a2f1fdb28f738c86bcbff948a80764a259a8a5449fcf1661977c1615d85e28b82d84038d112aa95e49
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-web-identity@npm:^3.972.56":
|
"@aws-sdk/credential-provider-sso@npm:^3.972.59":
|
||||||
version: 3.972.56
|
version: 3.972.59
|
||||||
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.56"
|
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.59"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
"@aws-sdk/nested-clients": "npm:^3.997.27"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/token-providers": "npm:3.1079.0"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/core": "npm:^3.29.0"
|
||||||
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/540da11269e18b43d840429d4151a10a4f1c0a14b00bdd69db502133153c35ea245b2f69c0322e1bb7b3eb119dce9c74b96df954d1024d49f7294273700b5b8b
|
checksum: 10/9572fb8a45f82e8e7afe72f32b04e86d0738f676c543481a64ab19ca19c435c363da94443b4040ed63625af7ab421d1bacf1efaabbafa8079ef9404db21136fc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/nested-clients@npm:^3.997.24":
|
"@aws-sdk/credential-provider-web-identity@npm:^3.972.59":
|
||||||
version: 3.997.24
|
version: 3.972.59
|
||||||
resolution: "@aws-sdk/nested-clients@npm:3.997.24"
|
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.59"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-crypto/sha256-browser": "npm:5.2.0"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@aws-crypto/sha256-js": "npm:5.2.0"
|
"@aws-sdk/nested-clients": "npm:^3.997.27"
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.36"
|
"@smithy/core": "npm:^3.29.0"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
|
||||||
"@smithy/fetch-http-handler": "npm:^5.6.0"
|
|
||||||
"@smithy/node-http-handler": "npm:^4.9.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/43efc86fba29bf23756c4bdf4d58658b625eeb712950b2a6ee26a5357dee38517401e85cb4348accab6c9910956581562a35b90cee47c2435edaf7ca105c3b00
|
checksum: 10/128dd680c400435a680681017d7076f6dca2051db081afe9327cc8051699d01c01c14a5339c6a6b025587f4a25c386f444f7931c543dfd952ef8135822809e33
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/signature-v4-multi-region@npm:^3.996.36":
|
"@aws-sdk/nested-clients@npm:^3.997.27":
|
||||||
version: 3.996.36
|
version: 3.997.27
|
||||||
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.36"
|
resolution: "@aws-sdk/nested-clients@npm:3.997.27"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
"@smithy/signature-v4": "npm:^5.5.3"
|
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.38"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
|
"@smithy/core": "npm:^3.29.0"
|
||||||
|
"@smithy/fetch-http-handler": "npm:^5.6.2"
|
||||||
|
"@smithy/node-http-handler": "npm:^4.9.2"
|
||||||
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/480ec04245c1707ee806be2bfad2897a2908d57dc3f771b8bc71ea6c8457dbcbaffdfa5e1f64f59b911a9946e4bc0106103c547a622f7a82ce967fd1b59d05ba
|
checksum: 10/e1d153ea6068c36c04c5b5d83e9f3a7fadbf3416906ff18a9737027b5bc5ea78f4b3353e2a212e4f5d63153e40d6ae6d1b3d6f84b3ba474c134fbdd5e57ba770
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/token-providers@npm:3.1076.0":
|
"@aws-sdk/signature-v4-multi-region@npm:^3.996.38":
|
||||||
version: 3.1076.0
|
version: 3.996.38
|
||||||
resolution: "@aws-sdk/token-providers@npm:3.1076.0"
|
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.38"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
"@smithy/signature-v4": "npm:^5.6.1"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/960064c8f898fd13517b1a7659d2e41000c9007a87c38b8371a474256b9ff359550c78bb13e25311a343130834dbdd33f687b68ffdcdab7ed542e42e53d6e99a
|
checksum: 10/24624f1534044717f50c157be11056fffccda919fb24c3c046a76ac727054be60b23472009da3c0a4f4bb8e7f50d41beb711f87da6d87ae03140724623b1b1e9
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/types@npm:^3.222.0":
|
"@aws-sdk/token-providers@npm:3.1079.0":
|
||||||
version: 3.523.0
|
version: 3.1079.0
|
||||||
resolution: "@aws-sdk/types@npm:3.523.0"
|
resolution: "@aws-sdk/token-providers@npm:3.1079.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@smithy/types": "npm:^2.10.1"
|
"@aws-sdk/core": "npm:^3.974.27"
|
||||||
tslib: "npm:^2.5.0"
|
"@aws-sdk/nested-clients": "npm:^3.997.27"
|
||||||
checksum: 10/2a33cc1a68d259de199526efde22da2551bd4b6f0f1265d4d378a83b87a22eb88fb3c5b26aa6d649392c04e22aadfd88e56e86d37c304260a6ccb7275d76ed27
|
"@aws-sdk/types": "npm:^3.973.15"
|
||||||
languageName: node
|
"@smithy/core": "npm:^3.29.0"
|
||||||
linkType: hard
|
"@smithy/types": "npm:^4.15.1"
|
||||||
|
|
||||||
"@aws-sdk/types@npm:^3.973.14":
|
|
||||||
version: 3.973.14
|
|
||||||
resolution: "@aws-sdk/types@npm:3.973.14"
|
|
||||||
dependencies:
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/2c960877e3d5bb83b81a2974bc8aab86baa83053179e8fb1a77fde223138a64f5e14bc95d20146292af7eed499dd2b38aefd47ae68b5f746828abea8532e96a8
|
checksum: 10/96dddcd02f21fbef557b9856a53581cd9ae7e727e708437625b47a4699a493bc7f24d8fa02579cdb0f2b7a62faeb2bbb703daae776a4f0d3a8ed51a455d2bacc
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/util-locate-window@npm:^3.0.0":
|
"@aws-sdk/types@npm:^3.973.15":
|
||||||
version: 3.37.0
|
version: 3.973.15
|
||||||
resolution: "@aws-sdk/util-locate-window@npm:3.37.0"
|
resolution: "@aws-sdk/types@npm:3.973.15"
|
||||||
dependencies:
|
dependencies:
|
||||||
tslib: "npm:^2.3.0"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
checksum: 10/c8c8905bda0dd7381f64bffc4e40448ce859b3b094f54ea4d0ed23b7dbded6e12e5e2c7b8a459c0eca6dfdbe18830f2dfd1b11c3d9e95a3b715f38d6b37b45c8
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-sdk/xml-builder@npm:^3.972.32":
|
|
||||||
version: 3.972.32
|
|
||||||
resolution: "@aws-sdk/xml-builder@npm:3.972.32"
|
|
||||||
dependencies:
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/d42371e477fb55823d406fac361bd2288af56284c52265dfeaa60191f90fc4f9105760df23e803fd5e1ea7bb14cd2567bb101e551d06417dad8bbd16568cf452
|
checksum: 10/9232b076d3ca37f7c8cfff01719bef032cbe60dca3caa0ecb17d9aed06281837d25c91572933ea83234d3df8ed48675ab167e662f1e95cb47cfc708feb16cb99
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws/lambda-invoke-store@npm:^0.2.2":
|
"@aws-sdk/xml-builder@npm:^3.972.33":
|
||||||
version: 0.2.3
|
version: 3.972.33
|
||||||
resolution: "@aws/lambda-invoke-store@npm:0.2.3"
|
resolution: "@aws-sdk/xml-builder@npm:3.972.33"
|
||||||
checksum: 10/d0efa8ca73b2d8dc0bf634525eefa1b72cda85f5d47366264849343a6f2860cfa5c52b7f766a16b78da8406bbd3ee975da3abb1dbe38183f8af95413eafeb256
|
dependencies:
|
||||||
|
"@smithy/types": "npm:^4.15.1"
|
||||||
|
tslib: "npm:^2.6.2"
|
||||||
|
checksum: 10/c6ea4ec21b0672bb89021d707f7f3c72d253d193b457706ebe738d3209f5e485229a8c89f21598a49eac9227f58f3b58e0c6d3e320c95454a2c076e9681b50fb
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@aws/lambda-invoke-store@npm:^0.3.0":
|
||||||
|
version: 0.3.0
|
||||||
|
resolution: "@aws/lambda-invoke-store@npm:0.3.0"
|
||||||
|
checksum: 10/4a6c7af16477dd330d4dcd2269f89370be68295b54ae1e90ef8c2175efa4df6735f9a3f914ab7efa21ba7db5477031fe8488853adcd268eeb6cb8e34ad06b206
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -2038,115 +1956,66 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/core@npm:^3.27.0":
|
"@smithy/core@npm:^3.29.0, @smithy/core@npm:^3.29.1":
|
||||||
version: 3.27.0
|
version: 3.29.1
|
||||||
resolution: "@smithy/core@npm:3.27.0"
|
resolution: "@smithy/core@npm:3.29.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-crypto/crc32": "npm:5.2.0"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/d376e1e450cc51b8249ebf8049bdc047f535f94e8f399e69f53e947051d6f84386702b69dcf66cc6c4633fcd136ba9bda40721478f3d4d1298d4ead49529a98b
|
checksum: 10/78dee307be3a326a831df0b27af38b2811bf9e848888ab06ac7a20d330e53cbd2d826f5ccfba27dfc22cb095752f0db7cf26fe3cc56beffd4ad642ecc847d017
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/core@npm:^3.28.0":
|
"@smithy/credential-provider-imds@npm:^4.4.5":
|
||||||
version: 3.28.0
|
version: 4.4.6
|
||||||
resolution: "@smithy/core@npm:3.28.0"
|
resolution: "@smithy/credential-provider-imds@npm:4.4.6"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/core": "npm:^3.29.1"
|
||||||
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/b8fe9db961112b8dd36b48c9d692d0cbe83be3a5962b51874f52079a22595674a9bc30c01bb3868da74e0c9ab328cac1f71405982432434be3e5d9d57777b5d7
|
checksum: 10/97696994e712169cb153d8220f3d9dcb02d16f4513f00bf5fbd9d04fa1122f3166bc5b5bb8981928fb3b403776a85e25974f32b3ec9e65759f2cbbd6ca5b9490
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/credential-provider-imds@npm:^4.4.3":
|
"@smithy/fetch-http-handler@npm:^5.6.2":
|
||||||
version: 4.4.4
|
version: 5.6.3
|
||||||
resolution: "@smithy/credential-provider-imds@npm:4.4.4"
|
resolution: "@smithy/fetch-http-handler@npm:5.6.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@smithy/core": "npm:^3.28.0"
|
"@smithy/core": "npm:^3.29.1"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/47950acf6e89480592466fec4e7e5d6eed8ff9b939d76ef83a584b39067c593ce06df2616f354fda084b284af1406ac9a82d759a38623066b28ad7efe05a736b
|
checksum: 10/f4ec2cdc3cd63df1f3dbccee9a731f588fc0841f6e88b4ba900bac134b9cab2635f5463a45d77992d12e433a8b6dea57ee1e51617b1baa4f5b28b67232a5b41f
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/fetch-http-handler@npm:^5.6.0":
|
"@smithy/node-http-handler@npm:^4.9.2":
|
||||||
version: 5.6.1
|
version: 4.9.3
|
||||||
resolution: "@smithy/fetch-http-handler@npm:5.6.1"
|
resolution: "@smithy/node-http-handler@npm:4.9.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@smithy/core": "npm:^3.28.0"
|
"@smithy/core": "npm:^3.29.1"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/e7a841ef750fcfd936e274cd1bd011d0749328d7597e9d5ba8ed286be883fde25e6629315428502aec343c072c826ed512dd26a08ee33609884812cbbc1e2d84
|
checksum: 10/745eeee5fe27b5ec5729209b8ac13ac2eab0bcab2d2494e0d3b9064f701f3d9cee35a11010ef965b2dd6c712c70870717a9d90c2edbbae75d17eed470ec7a100
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/is-array-buffer@npm:^2.2.0":
|
"@smithy/signature-v4@npm:^5.6.1":
|
||||||
version: 2.2.0
|
version: 5.6.2
|
||||||
resolution: "@smithy/is-array-buffer@npm:2.2.0"
|
resolution: "@smithy/signature-v4@npm:5.6.2"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
"@smithy/core": "npm:^3.29.1"
|
||||||
|
"@smithy/types": "npm:^4.15.1"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/d366743ecc7a9fc3bad21dbb3950d213c12bdd4aeb62b1265bf6cbe38309df547664ef3e51ab732e704485194f15e89d361943b0bfbe3fe1a4b3178b942913cc
|
checksum: 10/0a2e32b0ad0a1e82dde43b81efbda039c990c6598ef5374ee981f4702415f1a2373a6bf089aabbc3929347dc8f15a0f2a26e52962667829bdc4f318af2eaf6ed
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/node-http-handler@npm:^4.9.0":
|
"@smithy/types@npm:^4.15.1":
|
||||||
version: 4.9.1
|
version: 4.15.1
|
||||||
resolution: "@smithy/node-http-handler@npm:4.9.1"
|
resolution: "@smithy/types@npm:4.15.1"
|
||||||
dependencies:
|
|
||||||
"@smithy/core": "npm:^3.28.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/d12b489b301b71767036a33c3c6736f4f37ea5ae8f147b054acbebaf3a5b02df05cba38b764813fa0cd24cde3c3faa22842bda31e0840bb4d79dd737f801d82e
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@smithy/signature-v4@npm:^5.5.3":
|
|
||||||
version: 5.6.0
|
|
||||||
resolution: "@smithy/signature-v4@npm:5.6.0"
|
|
||||||
dependencies:
|
|
||||||
"@smithy/core": "npm:^3.28.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/e4036321b89bc522d2c1edad6e70151c155dc0e4780a0d828cfdf941d5f8a871fda50912e7b9ed87172916761e84e50030b05f020523873232877b3f814f0b8c
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@smithy/types@npm:^2.10.1":
|
|
||||||
version: 2.11.0
|
|
||||||
resolution: "@smithy/types@npm:2.11.0"
|
|
||||||
dependencies:
|
|
||||||
tslib: "npm:^2.5.0"
|
|
||||||
checksum: 10/658cdb3e9710870729ab10921eb6eadd1cc7a1801ef3dc4562322a5674b1d1c1d9f8c283cd209e8389606b5cfc692b15484858406c35bbaede8fea15b2ef3de8
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@smithy/types@npm:^4.15.0":
|
|
||||||
version: 4.15.0
|
|
||||||
resolution: "@smithy/types@npm:4.15.0"
|
|
||||||
dependencies:
|
dependencies:
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/e41a84ec3eb9feb45040ccd541b1cacf0fc2375297802886459cb9311ff361080978c08ef98e9ad69f41d80ad212279d682a8fe30a993381b2f1dd376c1006c3
|
checksum: 10/18b4e3ebc352c3963dfdd49d0e6fc486138ecbcd25d80fa104b973f3db39c2ae1ab5d86d6510990dd219b8e83f32b823292592ce176969c39ecd4a528f3730a4
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@smithy/util-buffer-from@npm:^2.2.0":
|
|
||||||
version: 2.2.0
|
|
||||||
resolution: "@smithy/util-buffer-from@npm:2.2.0"
|
|
||||||
dependencies:
|
|
||||||
"@smithy/is-array-buffer": "npm:^2.2.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/53253e4e351df3c4b7907dca48a0a6ceae783e98a8e73526820b122b3047a53fd127c19f4d8301f68d852011d821da519da783de57e0b22eed57c4df5b90d089
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@smithy/util-utf8@npm:^2.0.0":
|
|
||||||
version: 2.3.0
|
|
||||||
resolution: "@smithy/util-utf8@npm:2.3.0"
|
|
||||||
dependencies:
|
|
||||||
"@smithy/util-buffer-from": "npm:^2.2.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/c766ead8dac6bc6169f4cac1cc47ef7bd86928d06255148f9528228002f669c8cc49f78dc2b9ba5d7e214d40315024a9e32c5c9130b33e20f0fe4532acd0dff5
|
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -3286,8 +3155,8 @@ __metadata:
|
|||||||
resolution: "docker-login@workspace:."
|
resolution: "docker-login@workspace:."
|
||||||
dependencies:
|
dependencies:
|
||||||
"@actions/core": "npm:^3.0.1"
|
"@actions/core": "npm:^3.0.1"
|
||||||
"@aws-sdk/client-ecr": "npm:^3.1076.0"
|
"@aws-sdk/client-ecr": "npm:^3.1079.0"
|
||||||
"@aws-sdk/client-ecr-public": "npm:^3.1076.0"
|
"@aws-sdk/client-ecr-public": "npm:^3.1079.0"
|
||||||
"@docker/actions-toolkit": "npm:^0.92.0"
|
"@docker/actions-toolkit": "npm:^0.92.0"
|
||||||
"@eslint/js": "npm:^9.39.3"
|
"@eslint/js": "npm:^9.39.3"
|
||||||
"@types/js-yaml": "npm:^4.0.9"
|
"@types/js-yaml": "npm:^4.0.9"
|
||||||
@@ -6247,7 +6116,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"tslib@npm:^2.2.0, tslib@npm:^2.3.0, tslib@npm:^2.5.0, tslib@npm:^2.6.2":
|
"tslib@npm:^2.2.0, tslib@npm:^2.3.0, tslib@npm:^2.6.2":
|
||||||
version: 2.6.2
|
version: 2.6.2
|
||||||
resolution: "tslib@npm:2.6.2"
|
resolution: "tslib@npm:2.6.2"
|
||||||
checksum: 10/bd26c22d36736513980091a1e356378e8b662ded04204453d353a7f34a4c21ed0afc59b5f90719d4ba756e581a162ecbf93118dc9c6be5acf70aa309188166ca
|
checksum: 10/bd26c22d36736513980091a1e356378e8b662ded04204453d353a7f34a4c21ed0afc59b5f90719d4ba756e581a162ecbf93118dc9c6be5acf70aa309188166ca
|
||||||
|
|||||||
Reference in New Issue
Block a user