mirror of
https://github.com/github/codeql-action.git
synced 2025-12-06 07:48:17 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
123 lines
3.6 KiB
YAML
Generated
123 lines
3.6 KiB
YAML
Generated
# Warning: This file is generated automatically, and should not be modified.
|
|
# Instead, please modify the template in the pr-checks directory and run:
|
|
# pr-checks/sync.sh
|
|
# to regenerate this file.
|
|
|
|
name: 'PR Check - Packaging: Download using registries'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GO111MODULE: auto
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- releases/v*
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
- ready_for_review
|
|
schedule:
|
|
- cron: '0 5 * * *'
|
|
workflow_dispatch:
|
|
inputs: {}
|
|
workflow_call:
|
|
inputs: {}
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
concurrency:
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
jobs:
|
|
init-with-registries:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-latest
|
|
version: default
|
|
- os: ubuntu-latest
|
|
version: linked
|
|
- os: ubuntu-latest
|
|
version: nightly-latest
|
|
name: 'Packaging: Download using registries'
|
|
if: github.triggering_actor != 'dependabot[bot]'
|
|
permissions:
|
|
contents: read
|
|
packages: read
|
|
|
|
timeout-minutes: 45
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v6
|
|
- name: Prepare test
|
|
id: prepare-test
|
|
uses: ./.github/actions/prepare-test
|
|
with:
|
|
version: ${{ matrix.version }}
|
|
use-all-platform-bundle: 'false'
|
|
setup-kotlin: 'true'
|
|
- name: Init with registries
|
|
uses: ./../action/init
|
|
with:
|
|
db-location: ${{ runner.temp }}/customDbLocation
|
|
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
|
config-file: ./.github/codeql/codeql-config-registries.yml
|
|
languages: javascript
|
|
registries: |
|
|
- url: "https://ghcr.io/v2/"
|
|
packages: "*/*"
|
|
token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
- name: Verify packages installed
|
|
run: |
|
|
PRIVATE_PACK="$HOME/.codeql/packages/codeql-testing/private-pack"
|
|
CODEQL_PACK1="$HOME/.codeql/packages/codeql-testing/codeql-pack1"
|
|
|
|
if [[ -d $PRIVATE_PACK ]]
|
|
then
|
|
echo "$PRIVATE_PACK was installed."
|
|
else
|
|
echo "::error $PRIVATE_PACK pack was not installed."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -d $CODEQL_PACK1 ]]
|
|
then
|
|
echo "$CODEQL_PACK1 was installed."
|
|
else
|
|
echo "::error $CODEQL_PACK1 pack was not installed."
|
|
exit 1
|
|
fi
|
|
|
|
- name: Verify qlconfig.yml file was created
|
|
run: |
|
|
QLCONFIG_PATH=$RUNNER_TEMP/qlconfig.yml
|
|
echo "Expected qlconfig.yml file to be created at $QLCONFIG_PATH"
|
|
if [[ -f $QLCONFIG_PATH ]]
|
|
then
|
|
echo "qlconfig.yml file was created."
|
|
else
|
|
echo "::error qlconfig.yml file was not created."
|
|
exit 1
|
|
fi
|
|
|
|
- name: Verify contents of qlconfig.yml
|
|
run: |
|
|
QLCONFIG_PATH=$RUNNER_TEMP/qlconfig.yml
|
|
cat $QLCONFIG_PATH | yq -e '.registries[] | select(.url == "https://ghcr.io/v2/") | select(.packages == "*/*")'
|
|
if [[ $? -eq 0 ]]
|
|
then
|
|
echo "Registry was added to qlconfig.yml file."
|
|
else
|
|
echo "::error Registry was not added to qlconfig.yml file."
|
|
echo "Contents of qlconfig.yml file:"
|
|
cat $QLCONFIG_PATH
|
|
exit 1
|
|
fi
|
|
env:
|
|
CODEQL_ACTION_TEST_MODE: true
|