Skip to content

Commit 45c516f

Browse files
authored
Merge pull request #241 from kcl-lang/dependabot/github_actions/actions/upload-artifact-5
chore(deps): bump actions/upload-artifact from 4 to 5
2 parents 88bfd26 + 75d08dd commit 45c516f

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/dotnet-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
cargo build --release --target ${{ matrix.target }}
102102
103103
- name: 'Upload artifact'
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v5
105105
with:
106106
name: kcl-lib-${{ matrix.classifier }}
107107
if-no-files-found: error
@@ -165,7 +165,7 @@ jobs:
165165
dotnet build
166166
dotnet pack
167167
168-
- uses: actions/upload-artifact@v4
168+
- uses: actions/upload-artifact@v5
169169
with:
170170
name: KCL .NET Nuget Package
171171
path: |

.github/workflows/java-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
run: mvn clean package -DskipTests=true -Djni.classifier=${{ matrix.classifier }} -Dcargo-build.profile=release
8484

8585
- name: 'Upload artifact'
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
name: kcl-lib-${{ matrix.classifier }}
8989
path: |
@@ -135,7 +135,7 @@ jobs:
135135
"
136136
137137
- name: Upload artifact
138-
uses: actions/upload-artifact@v4
138+
uses: actions/upload-artifact@v5
139139
with:
140140
name: kcl-lib
141141
path: java/target/*.jar

.github/workflows/kotlin-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
run: mvn clean package -DskipTests=true -Djni.classifier=${{ matrix.classifier }} -Dcargo-build.profile=release
8484

8585
- name: 'Upload artifact'
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
name: kcl-lib-${{ matrix.classifier }}
8989
path: |
@@ -135,7 +135,7 @@ jobs:
135135
"
136136
137137
- name: Upload artifact
138-
uses: actions/upload-artifact@v4
138+
uses: actions/upload-artifact@v5
139139
with:
140140
name: kcl-lib
141141
path: kotlin/target/*.jar

.github/workflows/nodejs-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
shell: bash
119119
working-directory: .
120120
run: ${{ matrix.settings.build }}
121-
- uses: actions/upload-artifact@v4
121+
- uses: actions/upload-artifact@v5
122122
with:
123123
name: bindings-linux-${{ matrix.settings.target }}
124124
path: nodejs/*.node
@@ -158,7 +158,7 @@ jobs:
158158
- name: Build
159159
shell: bash
160160
run: ${{ matrix.settings.build }}
161-
- uses: actions/upload-artifact@v4
161+
- uses: actions/upload-artifact@v5
162162
with:
163163
name: bindings-windows-${{ matrix.settings.target }}
164164
path: nodejs/*.node
@@ -208,7 +208,7 @@ jobs:
208208
- name: Build
209209
run: ${{ matrix.settings.build }}
210210
shell: bash
211-
- uses: actions/upload-artifact@v4
211+
- uses: actions/upload-artifact@v5
212212
with:
213213
name: bindings-macos-${{ matrix.settings.target }}
214214
path: nodejs/*.node

.github/workflows/python-test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
command: sdist
3838
args: -o dist
3939
- name: Upload sdist
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v5
4141
with:
4242
name: sdist-${{ github.run_id }}
4343
path: python/dist
@@ -60,7 +60,7 @@ jobs:
6060
# Workaround ring 0.17 build issue
6161
CFLAGS_aarch64_unknown_linux_gnu: "-D__ARM_ARCH=8"
6262
- name: Upload wheels-linux-${{ matrix.target }}-${{ github.run_id }}
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v5
6464
with:
6565
name: wheels-linux-${{ matrix.target }}-${{ github.run_id }}
6666
path: python/dist
@@ -75,7 +75,7 @@ jobs:
7575
command: build
7676
args: --release -o dist --find-interpreter
7777
- name: Upload wheels-windows-${{ github.run_id }}
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v5
7979
with:
8080
name: wheels-windows-${{ github.run_id }}
8181
path: python/dist
@@ -91,7 +91,7 @@ jobs:
9191
target: universal2-apple-darwin
9292
args: --release -o dist --find-interpreter
9393
- name: Upload wheels-macos-${{ github.run_id }}
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v5
9595
with:
9696
name: wheels-macos-${{ github.run_id }}
9797
path: python/dist

0 commit comments

Comments
 (0)