Skip to content

Commit 14224ad

Browse files
authored
Merge pull request #312 from goToMain/dependabot/github_actions/actions/upload-artifact-7
CI: Bump actions/upload-artifact from 6 to 7
2 parents cbc9499 + ee2ce78 commit 14224ad

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/cross-plaform-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Pack built binaries
3636
run: cmake --build build --target package
3737
- name: Upload artifacts
38-
uses: actions/upload-artifact@v6
38+
uses: actions/upload-artifact@v7
3939
with:
4040
name: libosdp-${{ matrix.os }}-binaries
4141
path: build/artifacts/

.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
ls -la ${{ env.CIBW_OUTPUT_DIR }} || true
108108
109109
- name: Upload wheelhouse artifact
110-
uses: actions/upload-artifact@v6
110+
uses: actions/upload-artifact@v7
111111
with:
112112
name: cibw-wheelhouse-${{ matrix.os }}-${{ matrix.image }}-${{ matrix.archs }}
113113
path: ${{ env.CIBW_OUTPUT_DIR }}
@@ -125,7 +125,7 @@ jobs:
125125
pushd python
126126
python -m build --sdist
127127
128-
- uses: actions/upload-artifact@v6
128+
- uses: actions/upload-artifact@v7
129129
with:
130130
name: cibw-sdist
131131
path: python/dist/*.tar.gz

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
fi
6666
6767
echo "version=${version}" >> "${GITHUB_OUTPUT}"
68-
- uses: actions/upload-artifact@v6
68+
- uses: actions/upload-artifact@v7
6969
with:
7070
name: release-notes
7171
path: RELEASE.txt
@@ -96,7 +96,7 @@ jobs:
9696
- name: Pack built binaries
9797
run: cmake --build build --target package
9898
- name: Upload artifacts
99-
uses: actions/upload-artifact@v6
99+
uses: actions/upload-artifact@v7
100100
with:
101101
name: libosdp-${{ matrix.os }}-binaries
102102
path: build/artifacts/
@@ -174,7 +174,7 @@ jobs:
174174
# in setup.py needs setuptools>=77, which dropped Python 3.8.
175175
CIBW_SKIP: "cp38-*"
176176
- name: Upload wheelhouse artifact
177-
uses: actions/upload-artifact@v6
177+
uses: actions/upload-artifact@v7
178178
with:
179179
name: cibw-wheelhouse-${{ matrix.os }}-${{ matrix.image }}-${{ matrix.archs }}
180180
path: ${{ env.CIBW_OUTPUT_DIR }}
@@ -193,7 +193,7 @@ jobs:
193193
python -m pip install --upgrade pip setuptools wheel build
194194
pushd python
195195
python -m build --sdist
196-
- uses: actions/upload-artifact@v6
196+
- uses: actions/upload-artifact@v7
197197
with:
198198
name: cibw-sdist
199199
path: python/dist/*.tar.gz
@@ -209,7 +209,7 @@ jobs:
209209
submodules: recursive
210210
- name: Archive PlatformIO package source
211211
run: git archive --format tar.gz --prefix "libosdp-${GITHUB_REF_NAME}/" -o libosdp-platformio-${GITHUB_REF_NAME}.tar.gz "${GITHUB_SHA}"
212-
- uses: actions/upload-artifact@v6
212+
- uses: actions/upload-artifact@v7
213213
with:
214214
name: platformio-package
215215
path: libosdp-platformio-${{ github.ref_name }}.tar.gz

.github/workflows/reusable-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: cmake --build . --parallel 7 --target all --target cpp_cp_sample --target cpp_pd_sample
3232
- name: Package
3333
run: cmake --build . --target package --target package_source
34-
- uses: actions/upload-artifact@v6
34+
- uses: actions/upload-artifact@v7
3535
with:
3636
name: libosdp-ubuntu-latest-binaries.zip
3737
path: artifacts/
@@ -97,7 +97,7 @@ jobs:
9797
- name: Build a binary wheel and a source tarball
9898
run: python3 -m build python
9999
- name: Store the distribution packages
100-
uses: actions/upload-artifact@v6
100+
uses: actions/upload-artifact@v7
101101
with:
102102
name: python-package-distributions
103103
path: python/dist/

0 commit comments

Comments
 (0)