mirror of
https://github.com/docker/login-action.git
synced 2026-07-03 14:36:51 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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
667
dist/licenses.txt
generated
vendored
667
dist/licenses.txt
generated
vendored
@@ -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.1077.0
|
||||||
- @aws-crypto/util@5.2.0
|
- @aws-sdk/client-ecr@3.1077.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,10 +2124,8 @@ 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.37
|
||||||
- @smithy/core@3.27.0
|
|
||||||
- @smithy/core@3.28.0
|
- @smithy/core@3.28.0
|
||||||
- @smithy/types@2.11.0
|
|
||||||
- @smithy/types@4.15.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.25
|
||||||
|
|
||||||
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.51
|
||||||
- @aws-sdk/credential-provider-ini@3.972.57
|
- @aws-sdk/credential-provider-ini@3.972.58
|
||||||
- @aws-sdk/credential-provider-node@3.972.59
|
- @aws-sdk/credential-provider-node@3.972.60
|
||||||
- @aws-sdk/token-providers@3.1076.0
|
- @aws-sdk/token-providers@3.1077.0
|
||||||
- @aws-sdk/types@3.523.0
|
|
||||||
- @aws-sdk/types@3.973.14
|
- @aws-sdk/types@3.973.14
|
||||||
- @aws-sdk/util-locate-window@3.37.0
|
|
||||||
- @aws-sdk/xml-builder@3.972.32
|
- @aws-sdk/xml-builder@3.972.32
|
||||||
- @smithy/credential-provider-imds@4.4.4
|
- @smithy/credential-provider-imds@4.4.4
|
||||||
- @smithy/fetch-http-handler@5.6.1
|
- @smithy/fetch-http-handler@5.6.1
|
||||||
- @smithy/is-array-buffer@2.2.0
|
|
||||||
- @smithy/node-http-handler@4.9.1
|
- @smithy/node-http-handler@4.9.1
|
||||||
- @smithy/signature-v4@5.6.0
|
- @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.51
|
||||||
- @aws-sdk/credential-provider-sso@3.972.56
|
- @aws-sdk/credential-provider-sso@3.972.57
|
||||||
- @aws-sdk/credential-provider-web-identity@3.972.56
|
- @aws-sdk/credential-provider-web-identity@3.972.57
|
||||||
|
|
||||||
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.53
|
||||||
- @aws-sdk/credential-provider-login@3.972.56
|
- @aws-sdk/credential-provider-login@3.972.57
|
||||||
- @aws-sdk/nested-clients@3.997.24
|
- @aws-sdk/nested-clients@3.997.25
|
||||||
- @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.1077.0",
|
||||||
"@aws-sdk/client-ecr-public": "^3.1076.0",
|
"@aws-sdk/client-ecr-public": "^3.1077.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 => {
|
||||||
|
if (auth.password) {
|
||||||
core.setSecret(auth.password); // redacted in workflow logs
|
core.setSecret(auth.password); // redacted in workflow logs
|
||||||
|
}
|
||||||
const registry = auth.registry || 'docker.io';
|
const registry = auth.registry || 'docker.io';
|
||||||
return {
|
return {
|
||||||
registry,
|
registry,
|
||||||
|
|||||||
383
yarn.lock
383
yarn.lock
@@ -170,290 +170,217 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-crypto/crc32@npm:5.2.0":
|
"@aws-sdk/client-ecr-public@npm:^3.1077.0":
|
||||||
version: 5.2.0
|
version: 3.1077.0
|
||||||
resolution: "@aws-crypto/crc32@npm:5.2.0"
|
resolution: "@aws-sdk/client-ecr-public@npm:3.1077.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-crypto/util": "npm:^5.2.0"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
"@aws-sdk/types": "npm:^3.222.0"
|
"@aws-sdk/credential-provider-node": "npm:^3.972.60"
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-crypto/sha256-browser@npm:5.2.0":
|
|
||||||
version: 5.2.0
|
|
||||||
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
|
|
||||||
dependencies:
|
|
||||||
"@aws-crypto/sha256-js": "npm:^5.2.0"
|
|
||||||
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
|
|
||||||
"@aws-crypto/util": "npm:^5.2.0"
|
|
||||||
"@aws-sdk/types": "npm:^3.222.0"
|
|
||||||
"@aws-sdk/util-locate-window": "npm:^3.0.0"
|
|
||||||
"@smithy/util-utf8": "npm:^2.0.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
|
|
||||||
version: 5.2.0
|
|
||||||
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
|
|
||||||
dependencies:
|
|
||||||
"@aws-crypto/util": "npm:^5.2.0"
|
|
||||||
"@aws-sdk/types": "npm:^3.222.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@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"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/fetch-http-handler": "npm:^5.6.0"
|
"@smithy/fetch-http-handler": "npm:^5.6.1"
|
||||||
"@smithy/node-http-handler": "npm:^4.9.0"
|
"@smithy/node-http-handler": "npm:^4.9.1"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/0fca29edaa3a70a9162b92cb26000918d7854fa4516afc1c58881044a1f69e83c8f0936d0ee96e352348659293594d234ccc7c50397a67557c69d7681f3e9d90
|
checksum: 10/916cf62d4db13bfcecc8023b26e9cdcc69e1df9c7daa7cbbe8b205998ccb9443251cae24fe3a06f5f20d2fbffee4e400e0714c2963dc75536a3482fd60544f53
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/client-ecr@npm:^3.1076.0":
|
"@aws-sdk/client-ecr@npm:^3.1077.0":
|
||||||
version: 3.1076.0
|
version: 3.1077.0
|
||||||
resolution: "@aws-sdk/client-ecr@npm:3.1076.0"
|
resolution: "@aws-sdk/client-ecr@npm:3.1077.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-crypto/sha256-browser": "npm:5.2.0"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
"@aws-crypto/sha256-js": "npm:5.2.0"
|
"@aws-sdk/credential-provider-node": "npm:^3.972.60"
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
|
||||||
"@aws-sdk/credential-provider-node": "npm:^3.972.59"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/fetch-http-handler": "npm:^5.6.0"
|
"@smithy/fetch-http-handler": "npm:^5.6.1"
|
||||||
"@smithy/node-http-handler": "npm:^4.9.0"
|
"@smithy/node-http-handler": "npm:^4.9.1"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/d04627d16f5423f5edd5bcf5e4396b0cc9d343e9ed33aee44b42f7d061f98423dbe68ccb424830482a3f52d9d710797ca535396cd90662bd59f728f9cdede32b
|
checksum: 10/5c70110f9a3cac414701b97710ae40147e1e982ab6239ccd6a839f8726f490b548874fc4e4d968ccc548bdc187cd2864b54c2d3d5ed3bfe32285e555c6a413a8
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/core@npm:^3.974.24":
|
"@aws-sdk/core@npm:^3.974.25":
|
||||||
version: 3.974.24
|
version: 3.974.25
|
||||||
resolution: "@aws-sdk/core@npm:3.974.24"
|
resolution: "@aws-sdk/core@npm:3.974.25"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@aws-sdk/xml-builder": "npm:^3.972.32"
|
"@aws-sdk/xml-builder": "npm:^3.972.32"
|
||||||
"@aws/lambda-invoke-store": "npm:^0.2.2"
|
"@aws/lambda-invoke-store": "npm:^0.2.2"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/signature-v4": "npm:^5.5.3"
|
"@smithy/signature-v4": "npm:^5.6.0"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@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/25ca1498913983d8f7c2f25485d3c825e9b23a48b15eeac3e695b70fd6393f815f644b4ca11bc8145eff2dec5cbee06360ae7bcf76b5fd9dbb214fd80abe81be
|
||||||
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.51":
|
||||||
version: 3.972.50
|
version: 3.972.51
|
||||||
resolution: "@aws-sdk/credential-provider-env@npm:3.972.50"
|
resolution: "@aws-sdk/credential-provider-env@npm:3.972.51"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/92bad36f62f6d337be0cc33ef7db35c7ad7540d5883f9a67664de1236fd6e7cf5200a8a1dafe7841d2d148f390e47206118b2c643ed0214466c906d94b687851
|
checksum: 10/3e745169838f44f26828a6c860e32d662d9b52be6d7b63dd2407028b53567fdd24b8a2e92bfb27da73c2f71e07a051a17722bfe0c7dd5a665a0d3f302812a148
|
||||||
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.53":
|
||||||
version: 3.972.52
|
version: 3.972.53
|
||||||
resolution: "@aws-sdk/credential-provider-http@npm:3.972.52"
|
resolution: "@aws-sdk/credential-provider-http@npm:3.972.53"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/fetch-http-handler": "npm:^5.6.0"
|
"@smithy/fetch-http-handler": "npm:^5.6.1"
|
||||||
"@smithy/node-http-handler": "npm:^4.9.0"
|
"@smithy/node-http-handler": "npm:^4.9.1"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/ead75fd4f28ba3e598e7548357a9435d9e2367977f7147430c485d7c62a6f36a875c198118ed05c09870beb912533148ac20eddab2ac913085bc0ca7ddd760a3
|
checksum: 10/94247a81a8d0235c3eb14a2e8ac41b70314efa585ca62d0c16c0293f96a2d2f1d0b0ed947d6e15e46d0fdc565725d6d2a37d5e847523995d11f21fe254eb0094
|
||||||
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.58":
|
||||||
|
version: 3.972.58
|
||||||
|
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.58"
|
||||||
|
dependencies:
|
||||||
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
|
"@aws-sdk/credential-provider-env": "npm:^3.972.51"
|
||||||
|
"@aws-sdk/credential-provider-http": "npm:^3.972.53"
|
||||||
|
"@aws-sdk/credential-provider-login": "npm:^3.972.57"
|
||||||
|
"@aws-sdk/credential-provider-process": "npm:^3.972.51"
|
||||||
|
"@aws-sdk/credential-provider-sso": "npm:^3.972.57"
|
||||||
|
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.57"
|
||||||
|
"@aws-sdk/nested-clients": "npm:^3.997.25"
|
||||||
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
|
"@smithy/core": "npm:^3.28.0"
|
||||||
|
"@smithy/credential-provider-imds": "npm:^4.4.4"
|
||||||
|
"@smithy/types": "npm:^4.15.0"
|
||||||
|
tslib: "npm:^2.6.2"
|
||||||
|
checksum: 10/d9d0024c120fbe0de0a6436fe7d5fd8056549cfd630f385b389d131417cf06ba6848c56a45b0afad5fdeec6b850d2c1dc91fc165d47a671d904e9e1facd7001b
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@aws-sdk/credential-provider-login@npm:^3.972.57":
|
||||||
version: 3.972.57
|
version: 3.972.57
|
||||||
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.57"
|
resolution: "@aws-sdk/credential-provider-login@npm:3.972.57"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
"@aws-sdk/credential-provider-env": "npm:^3.972.50"
|
"@aws-sdk/nested-clients": "npm:^3.997.25"
|
||||||
"@aws-sdk/credential-provider-http": "npm:^3.972.52"
|
|
||||||
"@aws-sdk/credential-provider-login": "npm:^3.972.56"
|
|
||||||
"@aws-sdk/credential-provider-process": "npm:^3.972.50"
|
|
||||||
"@aws-sdk/credential-provider-sso": "npm:^3.972.56"
|
|
||||||
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.56"
|
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/credential-provider-imds": "npm:^4.4.3"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/df6701f74a2be48570faf33804f9999d1f7c6bd5de7bb766a55ff0831e83b95017e72e2964e655595244e5eef60ea325a8597e87b016bc22bbd14620af4c963e
|
checksum: 10/22b24eedad0620c15ed78f6e02a6add822357c778acd452adf76a492a41a6750654aa01bd6a7877ee4cf96968988b305dbaf9a15278989f7960dddb53a11ddd0
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-login@npm:^3.972.56":
|
"@aws-sdk/credential-provider-node@npm:^3.972.60":
|
||||||
version: 3.972.56
|
version: 3.972.60
|
||||||
resolution: "@aws-sdk/credential-provider-login@npm:3.972.56"
|
resolution: "@aws-sdk/credential-provider-node@npm:3.972.60"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/credential-provider-env": "npm:^3.972.51"
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
"@aws-sdk/credential-provider-http": "npm:^3.972.53"
|
||||||
|
"@aws-sdk/credential-provider-ini": "npm:^3.972.58"
|
||||||
|
"@aws-sdk/credential-provider-process": "npm:^3.972.51"
|
||||||
|
"@aws-sdk/credential-provider-sso": "npm:^3.972.57"
|
||||||
|
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.57"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
|
"@smithy/credential-provider-imds": "npm:^4.4.4"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/5394e50c07da78de8e1643f898c308537f1454ccf0e02b00cd7af9d2c03961058cf6f4cf585b79eb23ff586ed82bbd1e959776a5aed0e780635ba38f58ff1a12
|
checksum: 10/5249e3bf1ded99f207ef8b4c80c4c19ab934115304790916def3f29877061c850e3089f71fd65cca3688327763175837a86f5afa100ef926c9749782ca0b7a44
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-node@npm:^3.972.59":
|
"@aws-sdk/credential-provider-process@npm:^3.972.51":
|
||||||
version: 3.972.59
|
version: 3.972.51
|
||||||
resolution: "@aws-sdk/credential-provider-node@npm:3.972.59"
|
resolution: "@aws-sdk/credential-provider-process@npm:3.972.51"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/credential-provider-env": "npm:^3.972.50"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
"@aws-sdk/credential-provider-http": "npm:^3.972.52"
|
|
||||||
"@aws-sdk/credential-provider-ini": "npm:^3.972.57"
|
|
||||||
"@aws-sdk/credential-provider-process": "npm:^3.972.50"
|
|
||||||
"@aws-sdk/credential-provider-sso": "npm:^3.972.56"
|
|
||||||
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.56"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/credential-provider-imds": "npm:^4.4.3"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/d35e5e27f581d864c5cbb9a30345eb9ac5f26b3604e7529448d3d5f149a066624ae99cc89ed5b90591a91f575b747729d09840a640c422d72b8ba6a408cef57e
|
checksum: 10/bdbd1dbd6aadbc8737b03ff776fc3b9c8d7c773214f35113ac7cb796f56bbb9ae141cf282b15a5a17b77c5f06133a28fdbd363053772f5aad9021bd08d777e8d
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-process@npm:^3.972.50":
|
"@aws-sdk/credential-provider-sso@npm:^3.972.57":
|
||||||
version: 3.972.50
|
version: 3.972.57
|
||||||
resolution: "@aws-sdk/credential-provider-process@npm:3.972.50"
|
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.57"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
|
"@aws-sdk/nested-clients": "npm:^3.997.25"
|
||||||
|
"@aws-sdk/token-providers": "npm:3.1077.0"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/272e20945a7f18e7e8dbf47771421e347430dde2a623358188d347df02c4d56b50a745d1166b7a251223ccfbd321358d762ffeb641cb5dde3f88765e9c574638
|
checksum: 10/53fa4e00bcedd8673ac271503dfe452d3c4076ac780bb381012b0f71732511dcb63e83211b544db1f0bedc667925629af5dc5b3b5fa0e8c11372a4211cbf135d
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-sso@npm:^3.972.56":
|
"@aws-sdk/credential-provider-web-identity@npm:^3.972.57":
|
||||||
version: 3.972.56
|
version: 3.972.57
|
||||||
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.56"
|
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.57"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
"@aws-sdk/nested-clients": "npm:^3.997.25"
|
||||||
"@aws-sdk/token-providers": "npm:3.1076.0"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/e1eac42cccd6842b089fbd59616ff3cdc3e0957eef1b408cb14b56312f5649eb9acbad260705f26608096e7014ffc9f3cb216583af9ba91f8bb42ab8be7dd9e7
|
checksum: 10/e3db324879b623695584fe4e591a360d930c82dc276fea4d344e537df29c1c821c52886562af51008573d0357e132fe6676a99ac49b545368f8e82ebd94a58f4
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/credential-provider-web-identity@npm:^3.972.56":
|
"@aws-sdk/nested-clients@npm:^3.997.25":
|
||||||
version: 3.972.56
|
version: 3.997.25
|
||||||
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.56"
|
resolution: "@aws-sdk/nested-clients@npm:3.997.25"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@aws-sdk/core": "npm:^3.974.24"
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
"@aws-sdk/nested-clients": "npm:^3.997.24"
|
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.37"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
|
"@smithy/fetch-http-handler": "npm:^5.6.1"
|
||||||
|
"@smithy/node-http-handler": "npm:^4.9.1"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/540da11269e18b43d840429d4151a10a4f1c0a14b00bdd69db502133153c35ea245b2f69c0322e1bb7b3eb119dce9c74b96df954d1024d49f7294273700b5b8b
|
checksum: 10/6e9507477672572d90e7802526f133b9956adb6306f401b51c1f76b55b60e93297943d9927e531cecba63303a157757bfadbf14524e164688a515e351f57d9de
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/nested-clients@npm:^3.997.24":
|
"@aws-sdk/signature-v4-multi-region@npm:^3.996.37":
|
||||||
version: 3.997.24
|
version: 3.996.37
|
||||||
resolution: "@aws-sdk/nested-clients@npm:3.997.24"
|
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.37"
|
||||||
dependencies:
|
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/signature-v4-multi-region": "npm:^3.996.36"
|
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/core": "npm:^3.27.0"
|
"@smithy/signature-v4": "npm:^5.6.0"
|
||||||
"@smithy/fetch-http-handler": "npm:^5.6.0"
|
|
||||||
"@smithy/node-http-handler": "npm:^4.9.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/43efc86fba29bf23756c4bdf4d58658b625eeb712950b2a6ee26a5357dee38517401e85cb4348accab6c9910956581562a35b90cee47c2435edaf7ca105c3b00
|
checksum: 10/16608054281ae2b29c409ef772572f27d51c05269efc5965bfb2a72405675fb2449087d635f62e9e6438a73cf2edad15c1161287ddb2672ad8f08e8bc598df0a
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/signature-v4-multi-region@npm:^3.996.36":
|
"@aws-sdk/token-providers@npm:3.1077.0":
|
||||||
version: 3.996.36
|
version: 3.1077.0
|
||||||
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.36"
|
resolution: "@aws-sdk/token-providers@npm:3.1077.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
"@aws-sdk/core": "npm:^3.974.25"
|
||||||
|
"@aws-sdk/nested-clients": "npm:^3.997.25"
|
||||||
"@aws-sdk/types": "npm:^3.973.14"
|
"@aws-sdk/types": "npm:^3.973.14"
|
||||||
"@smithy/signature-v4": "npm:^5.5.3"
|
"@smithy/core": "npm:^3.28.0"
|
||||||
"@smithy/types": "npm:^4.15.0"
|
"@smithy/types": "npm:^4.15.0"
|
||||||
tslib: "npm:^2.6.2"
|
tslib: "npm:^2.6.2"
|
||||||
checksum: 10/480ec04245c1707ee806be2bfad2897a2908d57dc3f771b8bc71ea6c8457dbcbaffdfa5e1f64f59b911a9946e4bc0106103c547a622f7a82ce967fd1b59d05ba
|
checksum: 10/7b026fd9a234c52424dba53c86208143dc87b009efee933cee5522ac815e77ac567cc25fba013df34b3616268697f36737ad47c4a9e274da57519d4c5cf024f4
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-sdk/token-providers@npm:3.1076.0":
|
|
||||||
version: 3.1076.0
|
|
||||||
resolution: "@aws-sdk/token-providers@npm:3.1076.0"
|
|
||||||
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/960064c8f898fd13517b1a7659d2e41000c9007a87c38b8371a474256b9ff359550c78bb13e25311a343130834dbdd33f687b68ffdcdab7ed542e42e53d6e99a
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-sdk/types@npm:^3.222.0":
|
|
||||||
version: 3.523.0
|
|
||||||
resolution: "@aws-sdk/types@npm:3.523.0"
|
|
||||||
dependencies:
|
|
||||||
"@smithy/types": "npm:^2.10.1"
|
|
||||||
tslib: "npm:^2.5.0"
|
|
||||||
checksum: 10/2a33cc1a68d259de199526efde22da2551bd4b6f0f1265d4d378a83b87a22eb88fb3c5b26aa6d649392c04e22aadfd88e56e86d37c304260a6ccb7275d76ed27
|
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -467,15 +394,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@aws-sdk/util-locate-window@npm:^3.0.0":
|
|
||||||
version: 3.37.0
|
|
||||||
resolution: "@aws-sdk/util-locate-window@npm:3.37.0"
|
|
||||||
dependencies:
|
|
||||||
tslib: "npm:^2.3.0"
|
|
||||||
checksum: 10/c8c8905bda0dd7381f64bffc4e40448ce859b3b094f54ea4d0ed23b7dbded6e12e5e2c7b8a459c0eca6dfdbe18830f2dfd1b11c3d9e95a3b715f38d6b37b45c8
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@aws-sdk/xml-builder@npm:^3.972.32":
|
"@aws-sdk/xml-builder@npm:^3.972.32":
|
||||||
version: 3.972.32
|
version: 3.972.32
|
||||||
resolution: "@aws-sdk/xml-builder@npm:3.972.32"
|
resolution: "@aws-sdk/xml-builder@npm:3.972.32"
|
||||||
@@ -2038,17 +1956,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/core@npm:^3.27.0":
|
|
||||||
version: 3.27.0
|
|
||||||
resolution: "@smithy/core@npm:3.27.0"
|
|
||||||
dependencies:
|
|
||||||
"@aws-crypto/crc32": "npm:5.2.0"
|
|
||||||
"@smithy/types": "npm:^4.15.0"
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/d376e1e450cc51b8249ebf8049bdc047f535f94e8f399e69f53e947051d6f84386702b69dcf66cc6c4633fcd136ba9bda40721478f3d4d1298d4ead49529a98b
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@smithy/core@npm:^3.28.0":
|
"@smithy/core@npm:^3.28.0":
|
||||||
version: 3.28.0
|
version: 3.28.0
|
||||||
resolution: "@smithy/core@npm:3.28.0"
|
resolution: "@smithy/core@npm:3.28.0"
|
||||||
@@ -2059,7 +1966,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/credential-provider-imds@npm:^4.4.3":
|
"@smithy/credential-provider-imds@npm:^4.4.4":
|
||||||
version: 4.4.4
|
version: 4.4.4
|
||||||
resolution: "@smithy/credential-provider-imds@npm:4.4.4"
|
resolution: "@smithy/credential-provider-imds@npm:4.4.4"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2070,7 +1977,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/fetch-http-handler@npm:^5.6.0":
|
"@smithy/fetch-http-handler@npm:^5.6.1":
|
||||||
version: 5.6.1
|
version: 5.6.1
|
||||||
resolution: "@smithy/fetch-http-handler@npm:5.6.1"
|
resolution: "@smithy/fetch-http-handler@npm:5.6.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2081,16 +1988,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/is-array-buffer@npm:^2.2.0":
|
"@smithy/node-http-handler@npm:^4.9.1":
|
||||||
version: 2.2.0
|
|
||||||
resolution: "@smithy/is-array-buffer@npm:2.2.0"
|
|
||||||
dependencies:
|
|
||||||
tslib: "npm:^2.6.2"
|
|
||||||
checksum: 10/d366743ecc7a9fc3bad21dbb3950d213c12bdd4aeb62b1265bf6cbe38309df547664ef3e51ab732e704485194f15e89d361943b0bfbe3fe1a4b3178b942913cc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@smithy/node-http-handler@npm:^4.9.0":
|
|
||||||
version: 4.9.1
|
version: 4.9.1
|
||||||
resolution: "@smithy/node-http-handler@npm:4.9.1"
|
resolution: "@smithy/node-http-handler@npm:4.9.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2101,7 +1999,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@smithy/signature-v4@npm:^5.5.3":
|
"@smithy/signature-v4@npm:^5.6.0":
|
||||||
version: 5.6.0
|
version: 5.6.0
|
||||||
resolution: "@smithy/signature-v4@npm:5.6.0"
|
resolution: "@smithy/signature-v4@npm:5.6.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2112,15 +2010,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
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":
|
"@smithy/types@npm:^4.15.0":
|
||||||
version: 4.15.0
|
version: 4.15.0
|
||||||
resolution: "@smithy/types@npm:4.15.0"
|
resolution: "@smithy/types@npm:4.15.0"
|
||||||
@@ -2130,26 +2019,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
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
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@standard-schema/spec@npm:^1.0.0":
|
"@standard-schema/spec@npm:^1.0.0":
|
||||||
version: 1.1.0
|
version: 1.1.0
|
||||||
resolution: "@standard-schema/spec@npm:1.1.0"
|
resolution: "@standard-schema/spec@npm:1.1.0"
|
||||||
@@ -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.1077.0"
|
||||||
"@aws-sdk/client-ecr-public": "npm:^3.1076.0"
|
"@aws-sdk/client-ecr-public": "npm:^3.1077.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