Skip to content

Commit 5516b24

Browse files
authored
Merge branch 'main' into fix/cache-poisoning-mitigation
2 parents 480dc09 + 03fb372 commit 5516b24

9 files changed

Lines changed: 20 additions & 20 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
run: ./dev-utils/make-distribution.sh
1515
shell: bash
1616

17-
- uses: actions/upload-artifact@v6
17+
- uses: actions/upload-artifact@v7
1818
with:
1919
name: build-distribution
2020
path: ./build/

.github/actions/packages/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
run: ./dev-utils/make-packages.sh
2020
shell: bash
2121
- name: Upload Packages
22-
uses: actions/upload-artifact@v6
22+
uses: actions/upload-artifact@v7
2323
with:
2424
name: packages
2525
path: |

.github/workflows/build-images.yml

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

2424
- name: Login to ghcr.io
25-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
25+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
2626
with:
2727
registry: ${{ env.REGISTRY }}
2828
username: ${{ github.actor }}

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
6060
steps:
6161
- uses: actions/checkout@v6
62-
- uses: actions/download-artifact@v7
62+
- uses: actions/download-artifact@v8
6363
with:
6464
name: packages
6565
path: dist
@@ -83,7 +83,7 @@ jobs:
8383
runs-on: ubuntu-latest
8484
steps:
8585
- uses: actions/checkout@v6
86-
- uses: actions/download-artifact@v7
86+
- uses: actions/download-artifact@v8
8787
with:
8888
name: build-distribution
8989
path: ./build
@@ -98,7 +98,7 @@ jobs:
9898
VERSION=${VERSION//./-}
9999
100100
ELASTIC_LAYER_NAME="elastic-apm-python-${VERSION}" .ci/publish-aws.sh
101-
- uses: actions/upload-artifact@v6
101+
- uses: actions/upload-artifact@v7
102102
if: startsWith(github.ref, 'refs/tags')
103103
with:
104104
name: arn-file
@@ -129,20 +129,20 @@ jobs:
129129
cache-binary: false
130130

131131
- name: Log in to the Elastic Container registry
132-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
132+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
133133
with:
134134
registry: ${{ secrets.ELASTIC_DOCKER_REGISTRY }}
135135
username: ${{ secrets.ELASTIC_DOCKER_USERNAME }}
136136
password: ${{ secrets.ELASTIC_DOCKER_PASSWORD }}
137137

138-
- uses: actions/download-artifact@v7
138+
- uses: actions/download-artifact@v8
139139
with:
140140
name: build-distribution
141141
path: ./build
142142

143143
- name: Extract metadata (tags, labels)
144144
id: docker-meta
145-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
145+
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
146146
with:
147147
images: ${{ env.DOCKER_IMAGE_NAME }}
148148
tags: |
@@ -153,7 +153,7 @@ jobs:
153153
154154
- name: Build and push image
155155
id: docker-push
156-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
156+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
157157
with:
158158
context: .
159159
platforms: linux/amd64,linux/arm64
@@ -180,7 +180,7 @@ jobs:
180180
runs-on: ubuntu-latest
181181
steps:
182182
- uses: actions/checkout@v6
183-
- uses: actions/download-artifact@v7
183+
- uses: actions/download-artifact@v8
184184
with:
185185
name: arn-file
186186
- name: Create GitHub Draft Release

.github/workflows/run-matrix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
LOCALSTACK_VOLUME_DIR: localstack_data
3333
- if: success() || failure()
3434
name: Upload JUnit Test Results
35-
uses: actions/upload-artifact@v6
35+
uses: actions/upload-artifact@v7
3636
with:
3737
name: test-results-${{ matrix.framework }}-${{ matrix.version }}
3838
path: "**/*-python-agent-junit.xml"
3939
- if: success() || failure()
4040
name: Upload Coverage Reports
41-
uses: actions/upload-artifact@v6
41+
uses: actions/upload-artifact@v7
4242
with:
4343
name: coverage-reports-${{ matrix.framework }}-${{ matrix.version }}
4444
path: "**/.coverage*"

.github/workflows/test-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
ENDOFFILE
3737
- if: success() || failure()
3838
name: Upload JUnit Test Results
39-
uses: actions/upload-artifact@v6
39+
uses: actions/upload-artifact@v7
4040
with:
4141
name: test-results-docs
4242
path: "docs-python-agent-junit.xml"

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,14 +156,14 @@ jobs:
156156
run: .\scripts\run-tests.bat
157157
- if: success() || failure()
158158
name: Upload JUnit Test Results
159-
uses: actions/upload-artifact@v6
159+
uses: actions/upload-artifact@v7
160160
with:
161161
name: test-results-${{ matrix.framework }}-${{ matrix.version }}-asyncio-${{ matrix.asyncio }}
162162
path: "**/*-python-agent-junit.xml"
163163
retention-days: 1
164164
- if: success() || failure()
165165
name: Upload Coverage Reports
166-
uses: actions/upload-artifact@v6
166+
uses: actions/upload-artifact@v7
167167
with:
168168
name: coverage-reports-${{ matrix.framework }}-${{ matrix.version }}-asyncio-${{ matrix.asyncio }}
169169
path: "**/.coverage*"
@@ -210,7 +210,7 @@ jobs:
210210

211211
- run: python -Im pip install --upgrade coverage[toml]
212212

213-
- uses: actions/download-artifact@v7
213+
- uses: actions/download-artifact@v8
214214
with:
215215
pattern: coverage-reports-*
216216
merge-multiple: true
@@ -227,7 +227,7 @@ jobs:
227227
python -Im coverage report --fail-under=84
228228
229229
- name: Upload HTML report
230-
uses: actions/upload-artifact@v6
230+
uses: actions/upload-artifact@v7
231231
with:
232232
name: html-coverage-report
233233
path: htmlcov

.github/workflows/updatecli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
permission-contents: write
2727
permission-pull-requests: write
2828

29-
- uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
29+
- uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
3030
with:
3131
registry: ghcr.io
3232
username: ${{ github.actor }}

Dockerfile.wolfi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM docker.elastic.co/wolfi/chainguard-base:latest@sha256:568df5fb0e237c3a2139399d4bd8e80994f24321fa8469aec565b8566704e83a
1+
FROM docker.elastic.co/wolfi/chainguard-base:latest@sha256:52799bf31ce800d69bfb0f0750e080b8dd6f8c5e54a6a4a124bad89c6768562f
22
ARG AGENT_DIR
33
COPY ${AGENT_DIR} /opt/python

0 commit comments

Comments
 (0)