From 739b0080fd48999cb08c37e2839cc8473548588d Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Fri, 8 Mar 2024 11:38:18 +0100 Subject: [PATCH 1/2] ci: switch build-distribution downloadArtifact to v3 (#1996) Since v4 can't find them if uploaded with uploadArtifact v3. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d22d37aa..a2a48b62b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: secrets: | secret/observability-team/ci/service-account/apm-agent-python access_key_id | AWS_ACCESS_KEY_ID ; secret/observability-team/ci/service-account/apm-agent-python secret_access_key | AWS_SECRET_ACCESS_KEY - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: build-distribution path: ./build @@ -84,7 +84,7 @@ jobs: url: ${{ secrets.VAULT_ADDR }} roleId: ${{ secrets.VAULT_ROLE_ID }} secretId: ${{ secrets.VAULT_SECRET_ID }} - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: build-distribution path: ./build From bab896de8579bbf1c3aaec37b13619ec06ea8a01 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Fri, 8 Mar 2024 12:00:32 +0100 Subject: [PATCH 2/2] update CHANGELOG and bump version to 6.21.3 (#1997) --- CHANGELOG.asciidoc | 8 ++++++++ elasticapm/version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 956f90d9a..57a6cb95f 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -32,6 +32,14 @@ endif::[] [[release-notes-6.x]] === Python Agent version 6.x +[[release-notes-6.21.3]] +==== 6.21.3 - 2024-03-08 + +[float] +===== Bug fixes + +* Fix artifacts download in CI workflows {pull}1996[#1996] + [[release-notes-6.21.2]] ==== 6.21.2 - 2024-03-07 diff --git a/elasticapm/version.py b/elasticapm/version.py index 38a43e781..6da6c370d 100644 --- a/elasticapm/version.py +++ b/elasticapm/version.py @@ -28,5 +28,5 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = (6, 21, 2) +__version__ = (6, 21, 3) VERSION = ".".join(map(str, __version__))