This is an automated email from the ASF dual-hosted git repository.
Fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new 88e8c2540 Build: Update actions/upload-artifact to v7.0.1 (#3401)
88e8c2540 is described below
commit 88e8c2540f770a77ae6f6a9b5b4e90d39ed05bcf
Author: Yuya Ebihara <[email protected]>
AuthorDate: Sat May 23 14:51:04 2026 +0900
Build: Update actions/upload-artifact to v7.0.1 (#3401)
<!--
Thanks for opening a pull request!
-->
<!-- In the case this PR will resolve an issue, please replace
${GITHUB_ISSUE_ID} below with the actual Github issue id. -->
<!-- Closes #${GITHUB_ISSUE_ID} -->
# Rationale for this change
Fix warning of Node.js:
```
Node.js 20 actions are deprecated. The following actions are running on
Node.js 20 and may not work as expected:
actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02. Actions will
be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20
will be removed from the runner on September 16th, 2026. Please check if
updated versions of these actions are available that support Node.js 24. To opt
into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24= [...]
```
https://github.com/apache/iceberg already uses v7.0.1.
## Are these changes tested?
N/A
## Are there any user-facing changes?
No
---
.github/workflows/pypi-build-artifacts.yml | 2 +-
.github/workflows/python-ci.yml | 8 ++++----
.github/workflows/svn-build-artifacts.yml | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/pypi-build-artifacts.yml
b/.github/workflows/pypi-build-artifacts.yml
index 11968fb2f..fb7e840d3 100644
--- a/.github/workflows/pypi-build-artifacts.yml
+++ b/.github/workflows/pypi-build-artifacts.yml
@@ -89,7 +89,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: ls -lah dist/* && cp dist/* wheelhouse/
- - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
# v4.6.2
+ - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
# v7.0.1
with:
name: "pypi-release-candidate-${{ matrix.os }}"
path: ./wheelhouse/*
diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml
index ed5587e1e..53b5ab395 100644
--- a/.github/workflows/python-ci.yml
+++ b/.github/workflows/python-ci.yml
@@ -101,7 +101,7 @@ jobs:
if: ${{ failure() }}
run: docker compose -f dev/docker-compose-integration.yml logs
- name: Upload coverage data
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #
v4.6.2
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: coverage-integration
path: .coverage*
@@ -130,7 +130,7 @@ jobs:
if: ${{ failure() }}
run: docker compose -f dev/docker-compose.yml logs
- name: Upload coverage data
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #
v4.6.2
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: coverage-s3
path: .coverage*
@@ -159,7 +159,7 @@ jobs:
if: ${{ failure() }}
run: docker compose -f dev/docker-compose-azurite.yml logs
- name: Upload coverage data
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #
v4.6.2
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: coverage-adls
path: .coverage*
@@ -188,7 +188,7 @@ jobs:
if: ${{ failure() }}
run: docker compose -f dev/docker-compose-gcs-server.yml logs
- name: Upload coverage data
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #
v4.6.2
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: coverage-gcs
path: .coverage*
diff --git a/.github/workflows/svn-build-artifacts.yml
b/.github/workflows/svn-build-artifacts.yml
index 88990c5be..6cf471cdb 100644
--- a/.github/workflows/svn-build-artifacts.yml
+++ b/.github/workflows/svn-build-artifacts.yml
@@ -80,7 +80,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: ls -lah dist/* && cp dist/* wheelhouse/
- - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
# v4.6.2
+ - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
# v7.0.1
with:
name: "svn-release-candidate-${{ matrix.os }}"
path: ./wheelhouse/*