Skip to content

Commit 749b915

Browse files
chore(deps): bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3cc3cf9 commit 749b915

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.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@v5
104+
uses: actions/upload-artifact@v6
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@v5
168+
- uses: actions/upload-artifact@v6
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@v5
86+
uses: actions/upload-artifact@v6
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@v5
138+
uses: actions/upload-artifact@v6
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@v5
86+
uses: actions/upload-artifact@v6
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@v5
138+
uses: actions/upload-artifact@v6
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
@@ -126,7 +126,7 @@ jobs:
126126
shell: bash
127127
working-directory: .
128128
run: ${{ matrix.settings.build }}
129-
- uses: actions/upload-artifact@v5
129+
- uses: actions/upload-artifact@v6
130130
with:
131131
name: bindings-linux-${{ matrix.settings.target }}
132132
path: nodejs/*.node
@@ -165,7 +165,7 @@ jobs:
165165
- name: Build
166166
shell: bash
167167
run: ${{ matrix.settings.build }}
168-
- uses: actions/upload-artifact@v5
168+
- uses: actions/upload-artifact@v6
169169
with:
170170
name: bindings-windows-${{ matrix.settings.target }}
171171
path: nodejs/*.node
@@ -214,7 +214,7 @@ jobs:
214214
- name: Build
215215
run: ${{ matrix.settings.build }}
216216
shell: bash
217-
- uses: actions/upload-artifact@v5
217+
- uses: actions/upload-artifact@v6
218218
with:
219219
name: bindings-macos-${{ matrix.settings.target }}
220220
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@v5
40+
uses: actions/upload-artifact@v6
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@v5
63+
uses: actions/upload-artifact@v6
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@v5
78+
uses: actions/upload-artifact@v6
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@v5
94+
uses: actions/upload-artifact@v6
9595
with:
9696
name: wheels-macos-${{ github.run_id }}
9797
path: python/dist

0 commit comments

Comments
 (0)