Skip to content

Commit 182f7bf

Browse files
Merge branch 'main' into grpc-target-fix-1
2 parents 29fbbdd + 2d163e4 commit 182f7bf

92 files changed

Lines changed: 5356 additions & 5735 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.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ description: Run the build distribution
66
runs:
77
using: "composite"
88
steps:
9-
- uses: actions/setup-python@v5
9+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
1010
with:
1111
python-version: "3.10"
1212

1313
- name: Build lambda layer zip
1414
run: ./dev-utils/make-distribution.sh
1515
shell: bash
1616

17-
- uses: actions/upload-artifact@v4
17+
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
1818
with:
1919
name: build-distribution
2020
path: ./build/

.github/actions/packages/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Run the packages
66
runs:
77
using: "composite"
88
steps:
9-
- uses: actions/setup-python@v5
9+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
1010
with:
1111
python-version: "3.10"
1212
- name: Override the version if there is no tag release.
@@ -19,7 +19,7 @@ runs:
1919
run: ./dev-utils/make-packages.sh
2020
shell: bash
2121
- name: Upload Packages
22-
uses: actions/upload-artifact@v4
22+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
2323
with:
2424
name: packages
2525
path: |

.github/dependabot.yml

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
---
22
version: 2
3+
registries:
4+
docker-elastic:
5+
type: docker-registry
6+
url: https://docker.elastic.co
7+
username: ${{secrets.ELASTIC_DOCKER_USERNAME}}
8+
password: ${{secrets.ELASTIC_DOCKER_PASSWORD}}
9+
310
updates:
411
# Enable version updates for python
512
- package-ecosystem: "pip"
@@ -18,7 +25,9 @@ updates:
1825

1926
# GitHub actions
2027
- package-ecosystem: "github-actions"
21-
directory: "/"
28+
directories:
29+
- '/'
30+
- '/.github/actions/*'
2231
reviewers:
2332
- "elastic/observablt-ci"
2433
schedule:
@@ -30,29 +39,11 @@ updates:
3039
patterns:
3140
- "*"
3241

33-
# GitHub composite actions
34-
- package-ecosystem: "github-actions"
35-
directory: "/.github/actions/packages"
42+
- package-ecosystem: "docker"
43+
directories:
44+
- '/'
3645
reviewers:
37-
- "elastic/observablt-ci"
38-
schedule:
39-
interval: "weekly"
40-
day: "sunday"
41-
time: "22:00"
42-
groups:
43-
github-actions:
44-
patterns:
45-
- "*"
46-
47-
- package-ecosystem: "github-actions"
48-
directory: "/.github/actions/build-distribution"
49-
reviewers:
50-
- "elastic/observablt-ci"
46+
- "elastic/apm-agent-python"
47+
registries: "*"
5148
schedule:
52-
interval: "weekly"
53-
day: "sunday"
54-
time: "22:00"
55-
groups:
56-
github-actions:
57-
patterns:
58-
- "*"
49+
interval: "daily"

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
docs-preview:
12-
uses: elastic/docs-builder/.github/workflows/preview-build.yml@main
12+
uses: elastic/docs-builder/.github/workflows/preview-build.yml@99b12f8bf7a82107ffcf59dacd199d00a965e9db # main
1313
with:
1414
path-pattern: docs/**
1515
permissions:

.github/workflows/docs-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
docs-preview:
10-
uses: elastic/docs-builder/.github/workflows/preview-cleanup.yml@main
10+
uses: elastic/docs-builder/.github/workflows/preview-cleanup.yml@99b12f8bf7a82107ffcf59dacd199d00a965e9db # main
1111
permissions:
1212
contents: none
1313
id-token: write

.github/workflows/labeler.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ jobs:
2626
"members": "read"
2727
}
2828
- name: Add agent-python label
29-
uses: actions-ecosystem/action-add-labels@v1
29+
uses: actions-ecosystem/action-add-labels@18f1af5e3544586314bbe15c0273249c770b2daf # v1
3030
with:
3131
labels: agent-python
3232
- id: is_elastic_member
33-
uses: elastic/oblt-actions/github/is-member-of@v1
33+
uses: elastic/oblt-actions/github/is-member-of@31e93d1dfb82adc106fc7820f505db1afefe43b1 # v1
3434
with:
3535
github-org: "elastic"
3636
github-user: ${{ github.actor }}
3737
github-token: ${{ steps.get_token.outputs.token }}
3838
- name: Add community and triage labels
3939
if: contains(steps.is_elastic_member.outputs.result, 'false') && github.actor != 'dependabot[bot]' && github.actor != 'elastic-observability-automation[bot]'
40-
uses: actions-ecosystem/action-add-labels@v1
40+
uses: actions-ecosystem/action-add-labels@18f1af5e3544586314bbe15c0273249c770b2daf # v1
4141
with:
4242
labels: |
4343
community

.github/workflows/matrix-command.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
pull-requests: write
2222
steps:
2323
- name: Is comment allowed?
24-
uses: actions/github-script@v7
24+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
2525
with:
2626
script: |
2727
const actorPermission = (await github.rest.repos.getCollaboratorPermissionLevel({

.github/workflows/microbenchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 5
2020
steps:
2121
- name: Run microbenchmark
22-
uses: elastic/oblt-actions/buildkite/run@v1
22+
uses: elastic/oblt-actions/buildkite/run@31e93d1dfb82adc106fc7820f505db1afefe43b1 # v1
2323
with:
2424
pipeline: "apm-agent-microbenchmark"
2525
token: ${{ secrets.BUILDKITE_TOKEN }}

.github/workflows/packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
build:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2424
- uses: ./.github/actions/packages

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
pre-commit:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
16-
- uses: actions/setup-python@v5
17-
- uses: pre-commit/action@v3.0.1
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
16+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
17+
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1

0 commit comments

Comments
 (0)