Skip to content

Commit a925de3

Browse files
authored
Merge branch 'main' into qlucie-trigger
2 parents c97091b + 4093afb commit a925de3

380 files changed

Lines changed: 28111 additions & 5103 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

actions/ql/lib/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.4.7
2+
3+
No user-facing changes.
4+
15
## 0.4.6
26

37
### Bug Fixes
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.4.7
2+
3+
No user-facing changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
lastReleaseVersion: 0.4.6
2+
lastReleaseVersion: 0.4.7

actions/ql/lib/qlpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: codeql/actions-all
2-
version: 0.4.7-dev
2+
version: 0.4.8-dev
33
library: true
44
warnOnImplicitThis: true
55
dependencies:

actions/ql/src/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.5.4
2+
3+
### Bug Fixes
4+
5+
* Alerts produced by the query `actions/missing-workflow-permissions` now include a minimal set of recommended permissions in the alert message, based on well-known actions seen within the workflow file.
6+
17
## 0.5.3
28

39
### Bug Fixes

actions/ql/src/change-notes/2025-02-04-suggest-actions-permissions.md renamed to actions/ql/src/change-notes/released/0.5.4.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
---
2-
category: fix
3-
---
4-
* Alerts produced by the query `actions/missing-workflow-permissions` now include a minimal set of recommended permissions in the alert message, based on well-known actions seen within the workflow file.
1+
## 0.5.4
2+
3+
### Bug Fixes
4+
5+
* Alerts produced by the query `actions/missing-workflow-permissions` now include a minimal set of recommended permissions in the alert message, based on well-known actions seen within the workflow file.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
lastReleaseVersion: 0.5.3
2+
lastReleaseVersion: 0.5.4

actions/ql/src/qlpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: codeql/actions-queries
2-
version: 0.5.4-dev
2+
version: 0.5.5-dev
33
library: false
44
warnOnImplicitThis: true
55
groups: [actions, queries]
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class Expr extends @expr {
2+
string toString() { none() }
3+
}
4+
5+
class AggregateLiteral extends Expr, @aggregateliteral {
6+
override string toString() { none() }
7+
}
8+
9+
from AggregateLiteral aggregate, Expr initializer, int element_index, int position
10+
where aggregate_array_init(aggregate, initializer, element_index, position, _)
11+
select aggregate, initializer, element_index, position
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class Expr extends @expr {
2+
string toString() { none() }
3+
}
4+
5+
class AggregateLiteral extends Expr, @aggregateliteral {
6+
override string toString() { none() }
7+
}
8+
9+
class MemberVariable extends @membervariable {
10+
string toString() { none() }
11+
}
12+
13+
from AggregateLiteral aggregate, Expr initializer, MemberVariable field, int position
14+
where aggregate_field_init(aggregate, initializer, field, position, _)
15+
select aggregate, initializer, field, position

0 commit comments

Comments
 (0)