Skip to content

Commit 88e8c25

Browse files
authored
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@ea165f8. 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=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ ``` https://github.com/apache/iceberg already uses v7.0.1. ## Are these changes tested? N/A ## Are there any user-facing changes? No
1 parent fbd4c3b commit 88e8c25

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/pypi-build-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
if: matrix.os == 'ubuntu-latest'
9090
run: ls -lah dist/* && cp dist/* wheelhouse/
9191

92-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
92+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9393
with:
9494
name: "pypi-release-candidate-${{ matrix.os }}"
9595
path: ./wheelhouse/*

.github/workflows/python-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
if: ${{ failure() }}
102102
run: docker compose -f dev/docker-compose-integration.yml logs
103103
- name: Upload coverage data
104-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
104+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
105105
with:
106106
name: coverage-integration
107107
path: .coverage*
@@ -130,7 +130,7 @@ jobs:
130130
if: ${{ failure() }}
131131
run: docker compose -f dev/docker-compose.yml logs
132132
- name: Upload coverage data
133-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
133+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
134134
with:
135135
name: coverage-s3
136136
path: .coverage*
@@ -159,7 +159,7 @@ jobs:
159159
if: ${{ failure() }}
160160
run: docker compose -f dev/docker-compose-azurite.yml logs
161161
- name: Upload coverage data
162-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
162+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
163163
with:
164164
name: coverage-adls
165165
path: .coverage*
@@ -188,7 +188,7 @@ jobs:
188188
if: ${{ failure() }}
189189
run: docker compose -f dev/docker-compose-gcs-server.yml logs
190190
- name: Upload coverage data
191-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
191+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
192192
with:
193193
name: coverage-gcs
194194
path: .coverage*

.github/workflows/svn-build-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
if: matrix.os == 'ubuntu-latest'
8181
run: ls -lah dist/* && cp dist/* wheelhouse/
8282

83-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
83+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8484
with:
8585
name: "svn-release-candidate-${{ matrix.os }}"
8686
path: ./wheelhouse/*

0 commit comments

Comments
 (0)