mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 04:00:24 +08:00
Bumps the actions group with 4 updates: [actions/setup-go](https://github.com/actions/setup-go), [actions/github-script](https://github.com/actions/github-script), [actions/setup-node](https://github.com/actions/setup-node) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
44 lines
968 B
YAML
44 lines
968 B
YAML
name: Test that the workaround for python 3.12 on windows works
|
|
|
|
on:
|
|
push:
|
|
branches: [main, releases/v*]
|
|
pull_request:
|
|
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
|
# by other workflows.
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
schedule:
|
|
# Weekly on Monday.
|
|
- cron: '0 0 * * 1'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-setup-python-scripts:
|
|
env:
|
|
CODEQL_ACTION_TEST_MODE: true
|
|
timeout-minutes: 45
|
|
permissions:
|
|
contents: read
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.12
|
|
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Prepare test
|
|
uses: ./.github/actions/prepare-test
|
|
with:
|
|
version: default
|
|
|
|
- name: Initialize CodeQL
|
|
uses: ./../action/init
|
|
with:
|
|
tools: linked
|
|
languages: python
|
|
|
|
- name: Analyze
|
|
uses: ./../action/analyze
|