├── .eslintignore ├── .gitattributes ├── .github ├── dependabot.yml ├── linters │ ├── .eslintrc.yml │ ├── .markdown-lint.yml │ ├── .yaml-lint.yml │ └── tsconfig.json └── workflows │ ├── check-dist.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── linter.yml │ ├── release-new-action-version.yml │ └── release.yml ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc.json ├── CODEOWNERS ├── LICENSE ├── README.md ├── __tests__ ├── api-client.test.ts ├── config.test.ts ├── fs-helper.test.ts ├── ghcr-client.test.ts ├── index.test.ts ├── main.test.ts └── oci-container.test.ts ├── action.yml ├── badges └── coverage.svg ├── dist ├── index.js └── licenses.txt ├── package.json ├── script └── release ├── src ├── api-client.ts ├── config.ts ├── fs-helper.ts ├── ghcr-client.ts ├── index.ts ├── main.ts └── oci-container.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | dist/ 3 | node_modules/ 4 | coverage/ 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/linters/.eslintrc.yml -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /.github/linters/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/linters/tsconfig.json -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/release-new-action-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/workflows/release-new-action-version.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.6.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/api-client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/__tests__/api-client.test.ts -------------------------------------------------------------------------------- /__tests__/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/__tests__/config.test.ts -------------------------------------------------------------------------------- /__tests__/fs-helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/__tests__/fs-helper.test.ts -------------------------------------------------------------------------------- /__tests__/ghcr-client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/__tests__/ghcr-client.test.ts -------------------------------------------------------------------------------- /__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/__tests__/index.test.ts -------------------------------------------------------------------------------- /__tests__/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/__tests__/main.test.ts -------------------------------------------------------------------------------- /__tests__/oci-container.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/__tests__/oci-container.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/action.yml -------------------------------------------------------------------------------- /badges/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/badges/coverage.svg -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/package.json -------------------------------------------------------------------------------- /script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/script/release -------------------------------------------------------------------------------- /src/api-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/src/api-client.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/fs-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/src/fs-helper.ts -------------------------------------------------------------------------------- /src/ghcr-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/src/ghcr-client.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/oci-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/src/oci-container.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/publish-immutable-action/HEAD/tsconfig.json --------------------------------------------------------------------------------