Skip to content

Commit cc39368

Browse files
committed
Merge remote-tracking branch 'origin/main' into quenting/otel-prometheus-text
2 parents 9cec8a4 + b88a2f6 commit cc39368

File tree

182 files changed

+1118
-1450
lines changed

Some content is hidden

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

182 files changed

+1118
-1450
lines changed

.github/actions/build-policies/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ runs:
1212
- name: Install Open Policy Agent
1313
uses: open-policy-agent/[email protected]
1414
with:
15-
version: 1.1.0
15+
# Keep in sync with the Dockerfile and policies/Makefile
16+
version: 1.8.0
1617

1718
- name: Build the policies
1819
run: make

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ jobs:
276276

277277
- name: Build and push
278278
id: bake
279-
uses: docker/bake-action@v6.8.0
279+
uses: docker/bake-action@v6.9.0
280280
with:
281281
files: |
282282
./docker-bake.hcl
@@ -327,7 +327,7 @@ jobs:
327327
merge-multiple: true
328328

329329
- name: Prepare a release
330-
uses: softprops/[email protected].2
330+
uses: softprops/[email protected].3
331331
with:
332332
generate_release_notes: true
333333
body: |
@@ -389,14 +389,14 @@ jobs:
389389
merge-multiple: true
390390

391391
- name: Update unstable git tag
392-
uses: actions/github-script@v7.0.1
392+
uses: actions/github-script@v8.0.0
393393
with:
394394
script: |
395395
const script = require('./.github/scripts/update-unstable-tag.cjs');
396396
await script({ core, github, context });
397397
398398
- name: Update unstable release
399-
uses: softprops/[email protected].2
399+
uses: softprops/[email protected].3
400400
with:
401401
name: "Unstable build"
402402
tag_name: unstable
@@ -460,7 +460,7 @@ jobs:
460460
.github/scripts
461461
462462
- name: Remove label and comment
463-
uses: actions/github-script@v7.0.1
463+
uses: actions/github-script@v8.0.0
464464
env:
465465
BUILD_IMAGE_MANIFEST: ${{ needs.build-image.outputs.metadata }}
466466
with:

.github/workflows/ci.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
- name: Setup Regal
4242
uses: StyraInc/setup-regal@v1
4343
with:
44-
version: 0.29.2
44+
# Keep in sync with policies/Makefile
45+
version: 0.36.1
4546

4647
- name: Lint policies
4748
working-directory: ./policies
@@ -63,7 +64,7 @@ jobs:
6364
uses: actions/checkout@v5
6465

6566
- name: Install Node
66-
uses: actions/setup-node@v4.4.0
67+
uses: actions/setup-node@v5.0.0
6768
with:
6869
node-version: 22
6970

@@ -87,7 +88,7 @@ jobs:
8788
uses: actions/checkout@v5
8889

8990
- name: Install Node
90-
uses: actions/setup-node@v4.4.0
91+
uses: actions/setup-node@v5.0.0
9192
with:
9293
node-version: 22
9394

@@ -111,7 +112,7 @@ jobs:
111112
uses: actions/checkout@v5
112113

113114
- name: Install Node
114-
uses: actions/setup-node@v4.4.0
115+
uses: actions/setup-node@v5.0.0
115116
with:
116117
node-version: 20
117118

.github/workflows/coverage.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: make coverage
3939

4040
- name: Upload to codecov.io
41-
uses: codecov/codecov-action@v5.4.3
41+
uses: codecov/codecov-action@v5.5.1
4242
with:
4343
token: ${{ secrets.CODECOV_TOKEN }}
4444
files: policies/coverage.json
@@ -65,7 +65,7 @@ jobs:
6565
run: npm run coverage
6666

6767
- name: Upload to codecov.io
68-
uses: codecov/codecov-action@v5.4.3
68+
uses: codecov/codecov-action@v5.5.1
6969
with:
7070
token: ${{ secrets.CODECOV_TOKEN }}
7171
directory: frontend/coverage/
@@ -132,7 +132,7 @@ jobs:
132132
grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o target/coverage/tests.lcov
133133
134134
- name: Upload to codecov.io
135-
uses: codecov/codecov-action@v5.4.3
135+
uses: codecov/codecov-action@v5.5.1
136136
with:
137137
token: ${{ secrets.CODECOV_TOKEN }}
138138
files: target/coverage/*.lcov

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
tool: mdbook
4040

4141
- name: Install Node
42-
uses: actions/setup-node@v4.4.0
42+
uses: actions/setup-node@v5.0.0
4343
with:
4444
node-version: 22
4545

.github/workflows/merge-back.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
.github/scripts
3131
3232
- name: Push branch and open a PR
33-
uses: actions/github-script@v7.0.1
33+
uses: actions/github-script@v8.0.0
3434
env:
3535
SHA: ${{ inputs.sha }}
3636
with:

.github/workflows/release-branch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/checkout@v5
6565

6666
- name: Install Node
67-
uses: actions/setup-node@v4.4.0
67+
uses: actions/setup-node@v5.0.0
6868
with:
6969
node-version: 22
7070

@@ -112,7 +112,7 @@ jobs:
112112
.github/scripts
113113
114114
- name: Create a new release branch
115-
uses: actions/github-script@v7.0.1
115+
uses: actions/github-script@v8.0.0
116116
env:
117117
BRANCH: release/v${{ needs.compute-version.outputs.short }}
118118
SHA: ${{ needs.tag.outputs.sha }}

.github/workflows/release-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
.github/scripts
8383
8484
- name: Update the release branch
85-
uses: actions/github-script@v7.0.1
85+
uses: actions/github-script@v8.0.0
8686
env:
8787
BRANCH: "${{ github.ref_name }}"
8888
SHA: ${{ needs.tag.outputs.sha }}

.github/workflows/tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: cargo metadata --format-version 1
4747

4848
- name: Commit and tag using the GitHub API
49-
uses: actions/github-script@v7.0.1
49+
uses: actions/github-script@v8.0.0
5050
id: commit
5151
env:
5252
VERSION: ${{ inputs.version }}
@@ -58,7 +58,7 @@ jobs:
5858
return await script({ core, github, context });
5959
6060
- name: Update the refs
61-
uses: actions/github-script@v7.0.1
61+
uses: actions/github-script@v8.0.0
6262
env:
6363
VERSION: ${{ inputs.version }}
6464
TAG_SHA: ${{ fromJSON(steps.commit.outputs.result).tag }}

.github/workflows/translations-download.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v5
2323

2424
- name: Install Node
25-
uses: actions/setup-node@v4.4.0
25+
uses: actions/setup-node@v5.0.0
2626
with:
2727
node-version: 22
2828

0 commit comments

Comments
 (0)