From 5dcb9dec2d5e73d2ee53bcad6ecac6bc21c5b0a1 Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Wed, 7 Sep 2022 14:38:58 -0700 Subject: [PATCH] Update changelog and input descriptions --- CHANGELOG.md | 3 +-- init/action.yml | 9 +++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2c0ac1f1..2b61fc5ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,11 @@ ## [UNRELEASED] -No user facing changes. +- Allow CodeQL packs to be downloaded from GitHub Enterprise Server instances, using the new `registries` input for the `init` action. [#1221](https://github.com/github/codeql-action/pull/1221) ## 2.1.22 - 01 Sep 2022 - Downloading CodeQL packs has been moved to the `init` step. Previously, CodeQL packs were downloaded during the `analyze` step. [#1218](https://github.com/github/codeql-action/pull/1218) -- Allow CodeQL packs to be downloaded from GitHub Enterprise Server instances. [#1221](https://github.com/github/codeql-action/pull/1221) - Update default CodeQL bundle version to 2.10.4. [#1224](https://github.com/github/codeql-action/pull/1224) - The newly released [Poetry 1.2](https://python-poetry.org/blog/announcing-poetry-1.2.0) is not yet supported. In the most common case where the CodeQL Action is automatically installing Python dependencies, it will continue to install and use Poetry 1.1 on its own. However, in certain cases such as with self-hosted runners, you may need to ensure Poetry 1.1 is installed yourself. diff --git a/init/action.yml b/init/action.yml index 598b02d82..90e46e586 100644 --- a/init/action.yml +++ b/init/action.yml @@ -30,14 +30,11 @@ inputs: packages: */* token: \$\{{ secrets.GHCR_TOKEN }} - The url property contains the URL to the container registry you want to connect to. + The `url` property contains the URL to the container registry you want to connect to. - The packages property contains a single entry or a list of globs specifying packages that can be found in the container registry. Order is important. Earlier entries will match before later entries. + The `packages` property contains a single glob string or a list of glob strings, specifying which packages should be retrieved from this particular container registry. Order is important. Earlier entries will match before later entries. - The token property contains a connection token for this registry. - - If this input is missing, the `token` input is used for all pack downloads. - required: false + The `token` property contains a connection token for this registry. required: false matrix: default: ${{ toJson(matrix) }} required: false