Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge main into releases/v3 #2757

Merged
merged 24 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
de4457e
Add actions analysis to code scannign
aeisenberg Jan 24, 2025
faa23b6
Switch auth for enterprises-release repo from ssh to codeql CI token
oscarsj Jan 27, 2025
9ba5bca
Update Python version to 3.13 in workflow
aeisenberg Jan 27, 2025
1b7bc48
Rename token to clarify scope
oscarsj Jan 29, 2025
44dfd8f
Update changelog and version after v3.28.8
github-actions[bot] Jan 29, 2025
30ac3f3
Update checked-in dependencies
github-actions[bot] Jan 29, 2025
cf6550f
Merge pull request #2747 from github/mergeback/v3.28.8-to-main-dd746615
henrymercer Jan 29, 2025
50954e7
Use a separate config file for actions queries
aeisenberg Jan 29, 2025
e9987ad
Merge pull request #2725 from github/aeisenberg/enable-actions-analysis
aeisenberg Jan 29, 2025
dcf2d0d
Merge branch 'main' into oscarsj-patch-1
aeisenberg Jan 29, 2025
5be1eb0
Pin `ruby/setup-ruby` Action to v1.215.0
henrymercer Jan 30, 2025
9a4ae21
Merge pull request #2748 from github/henrymercer/pin-setup-ruby
henrymercer Jan 30, 2025
0701025
Merge pull request #2727 from github/oscarsj-patch-1
oscarsj Jan 30, 2025
e456c53
build(deps): bump actions/create-github-app-token in the actions group
dependabot[bot] Feb 3, 2025
3e913ef
build(deps): bump the npm group with 5 updates
dependabot[bot] Feb 3, 2025
9660df3
Update checked-in dependencies
github-actions[bot] Feb 3, 2025
a8f5935
Merge pull request #2749 from github/dependabot/github_actions/action…
angelapwen Feb 3, 2025
ad42dbd
Merge pull request #2750 from github/dependabot/npm_and_yarn/npm-768b…
angelapwen Feb 3, 2025
cf7c687
Send `init-post` status report in absence of config
henrymercer Feb 3, 2025
08bc0cf
Merge pull request #2751 from github/henrymercer/fix-init-post-withou…
henrymercer Feb 3, 2025
52189d2
Update default bundle to codeql-bundle-v2.20.4
github-actions[bot] Feb 4, 2025
57a08c0
Add changelog note
github-actions[bot] Feb 4, 2025
24e1c2d
Merge pull request #2753 from github/update-bundle/codeql-bundle-v2.20.4
aibaars Feb 6, 2025
43d9be6
Update changelog for v3.28.9
github-actions[bot] Feb 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions .github/codeql/codeql-actions-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Configuration for the CodeQL Actions Queries
name: "CodeQL Actions Queries config"
queries:
- uses: security-and-quality
2 changes: 1 addition & 1 deletion .github/workflows/__rubocop-multi-language.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 26 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
echo "Suggested matrix config for analysis job: $VERSIONS_JSON"
echo "versions=${VERSIONS_JSON}" >> $GITHUB_OUTPUT

build:
analyze-javascript:
needs: [check-codeql-versions]
strategy:
fail-fast: false
Expand All @@ -81,7 +81,7 @@ jobs:

permissions:
contents: read
security-events: write # needed to upload results
security-events: write

steps:
- name: Checkout
Expand All @@ -100,3 +100,27 @@ jobs:
uses: ./analyze
with:
category: "/language:javascript"


analyze-actions:
runs-on: ubuntu-latest

strategy:
fail-fast: false

permissions:
contents: read
security-events: write

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: ./init
with:
languages: actions
config-file: ./.github/codeql/codeql-actions-config.yml
- name: Perform CodeQL Analysis
uses: ./analyze
with:
category: "/language:actions"
2 changes: 1 addition & 1 deletion .github/workflows/post-release-mergeback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
--draft
- name: Generate token
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755
uses: actions/create-github-app-token@136412a57a7081aa63c935a2cc2918f76c34f514
id: app-token
with:
app-id: ${{ vars.AUTOMATION_APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
pull-requests: write # needed to create pull request
steps:
- name: Generate token
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755
uses: actions/create-github-app-token@136412a57a7081aa63c935a2cc2918f76c34f514
id: app-token
with:
app-id: ${{ vars.AUTOMATION_APP_ID }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.7"
python-version: "3.13"
- name: Checkout CodeQL Action
uses: actions/checkout@v4
- name: Checkout Enterprise Releases
uses: actions/checkout@v4
with:
repository: github/enterprise-releases
ssh-key: ${{ secrets.ENTERPRISE_RELEASES_SSH_KEY }}
token: ${{ secrets.ENTERPRISE_RELEASE_TOKEN }}
path: ${{ github.workspace }}/enterprise-releases/
- name: Update Supported Enterprise Server Versions
run: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.

## 3.28.9 - 07 Feb 2025

- Update default CodeQL bundle version to 2.20.4. [#2753](https://github.com/github/codeql-action/pull/2753)

## 3.28.8 - 29 Jan 2025

- Enable support for Kotlin 2.1.10 when running with CodeQL CLI v2.20.3. [#2744](https://github.com/github/codeql-action/pull/2744)
Expand Down
8 changes: 4 additions & 4 deletions lib/defaults.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"bundleVersion": "codeql-bundle-v2.20.3",
"cliVersion": "2.20.3",
"priorBundleVersion": "codeql-bundle-v2.20.2",
"priorCliVersion": "2.20.2"
"bundleVersion": "codeql-bundle-v2.20.4",
"cliVersion": "2.20.4",
"priorBundleVersion": "codeql-bundle-v2.20.3",
"priorCliVersion": "2.20.3"
}
5 changes: 3 additions & 2 deletions lib/init-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/init-action-post.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading