Skip to content

Commit 17783bf

Browse files
authored
Merge pull request #3199 from github/mergeback/v4.30.8-to-main-f443b600
Mergeback v4.30.8 refs/heads/releases/v4 into main
2 parents 527f0f3 + 3c764cd commit 17783bf

16 files changed

+23
-18
lines changed

.github/update-release-branch.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -371,10 +371,10 @@ def main():
371371
# releases.
372372
run_git('revert', vOlder_update_commits[0], '--no-edit')
373373

374-
# Also revert the "Update checked-in dependencies" commit created by Actions.
375-
update_dependencies_commit = run_git('log', '--grep', '^Update checked-in dependencies', '--format=%H').split()[0]
376-
print(f' Reverting {update_dependencies_commit}')
377-
run_git('revert', update_dependencies_commit, '--no-edit')
374+
# Also revert the "Rebuild" commit created by Actions.
375+
rebuild_commit = run_git('log', '--grep', '^Rebuild$', '--format=%H').split()[0]
376+
print(f' Reverting {rebuild_commit}')
377+
run_git('revert', rebuild_commit, '--no-edit')
378378

379379
else:
380380
print(' Nothing to revert.')

.github/workflows/post-release-mergeback.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ jobs:
146146
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}
147147

148148
- name: Create the GitHub release
149+
if: steps.check.outputs.exists != 'true'
149150
env:
150151
PARTIAL_CHANGELOG: "${{ runner.temp }}/partial_changelog.md"
151152
VERSION: "${{ steps.getVersion.outputs.version }}"

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
66

77
No user facing changes.
88

9+
## 4.30.8 - 10 Oct 2025
10+
11+
No user facing changes.
12+
913
## 4.30.7 - 06 Oct 2025
1014

1115
- [v4+ only] The CodeQL Action now runs on Node.js v24. [#3169](https://github.com/github/codeql-action/pull/3169)

lib/analyze-action-post.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/autobuild-action.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action-post.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/resolve-environment-action.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/start-proxy-action-post.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)