From 549734fbc6dd2311eca613a674e1d5db352a6696 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Dec 2023 17:29:54 +0100 Subject: [PATCH 1/2] Bump actions/setup-python from 4 to 5 (#1395) Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/buildpackage-mac.yml | 2 +- .github/workflows/buildpackage-win.yml | 2 +- .github/workflows/pypi-mac.yml | 2 +- .github/workflows/pypi-manylinux.yml | 2 +- .github/workflows/pypi-sdist.yml | 2 +- .github/workflows/pypi-win.yml | 2 +- .github/workflows/test.yml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/buildpackage-mac.yml b/.github/workflows/buildpackage-mac.yml index 686bd6929..bae75911d 100644 --- a/.github/workflows/buildpackage-mac.yml +++ b/.github/workflows/buildpackage-mac.yml @@ -21,7 +21,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: architecture: ${{ matrix.architecture }} python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/buildpackage-win.yml b/.github/workflows/buildpackage-win.yml index 8ca8f8b2c..fa4298563 100644 --- a/.github/workflows/buildpackage-win.yml +++ b/.github/workflows/buildpackage-win.yml @@ -29,7 +29,7 @@ jobs: submodules: recursive - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: architecture: ${{ matrix.architecture }} python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/pypi-mac.yml b/.github/workflows/pypi-mac.yml index 29dabd218..0e22f3a84 100644 --- a/.github/workflows/pypi-mac.yml +++ b/.github/workflows/pypi-mac.yml @@ -21,7 +21,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: architecture: ${{ matrix.architecture }} python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/pypi-manylinux.yml b/.github/workflows/pypi-manylinux.yml index 7cd6146fc..686e5a196 100644 --- a/.github/workflows/pypi-manylinux.yml +++ b/.github/workflows/pypi-manylinux.yml @@ -14,7 +14,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.x - name: Install dependencies diff --git a/.github/workflows/pypi-sdist.yml b/.github/workflows/pypi-sdist.yml index 49e050a44..f0eecbadf 100644 --- a/.github/workflows/pypi-sdist.yml +++ b/.github/workflows/pypi-sdist.yml @@ -14,7 +14,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.x - name: Install dependencies diff --git a/.github/workflows/pypi-win.yml b/.github/workflows/pypi-win.yml index 880e0d3d9..4346fc906 100644 --- a/.github/workflows/pypi-win.yml +++ b/.github/workflows/pypi-win.yml @@ -21,7 +21,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: architecture: ${{ matrix.architecture }} python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a39debb33..80b851c5b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} From d8da0dd1ad2daf2b886c79c1384e58d9753846c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 13:54:49 +0100 Subject: [PATCH 2/2] Bump actions/upload-artifact from 3 to 4 (#1396) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/buildpackage-mac.yml | 2 +- .github/workflows/buildpackage-win.yml | 2 +- .github/workflows/pypi-mac.yml | 2 +- .github/workflows/pypi-manylinux.yml | 2 +- .github/workflows/pypi-sdist.yml | 2 +- .github/workflows/pypi-win.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/buildpackage-mac.yml b/.github/workflows/buildpackage-mac.yml index bae75911d..203da0f94 100644 --- a/.github/workflows/buildpackage-mac.yml +++ b/.github/workflows/buildpackage-mac.yml @@ -69,7 +69,7 @@ jobs: echo "EXE_NAME=printrun-test" >> $GITHUB_ENV - name: Upload artifacts for inspection - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.EXE_NAME }}_${{ matrix.os }}_${{ matrix.architecture }}_py${{ matrix.python-version }} path: dist/pronterface-app.zip diff --git a/.github/workflows/buildpackage-win.yml b/.github/workflows/buildpackage-win.yml index fa4298563..616dce97c 100644 --- a/.github/workflows/buildpackage-win.yml +++ b/.github/workflows/buildpackage-win.yml @@ -99,7 +99,7 @@ jobs: "EXE_NAME=printrun-test" >> $env:GITHUB_ENV - name: Upload artifacts for inspection - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.EXE_NAME }}_windows_${{ matrix.architecture }}_py${{ matrix.python-version }} path: dist/pronterface.exe diff --git a/.github/workflows/pypi-mac.yml b/.github/workflows/pypi-mac.yml index 0e22f3a84..db108feea 100644 --- a/.github/workflows/pypi-mac.yml +++ b/.github/workflows/pypi-mac.yml @@ -32,7 +32,7 @@ jobs: run: | python setup.py bdist_wheel - name: Upload artifacts for inspection - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheel_${{ matrix.os }}_${{ matrix.architecture }}_${{ matrix.python-version }} path: dist/*.whl diff --git a/.github/workflows/pypi-manylinux.yml b/.github/workflows/pypi-manylinux.yml index 686e5a196..bb428fcc8 100644 --- a/.github/workflows/pypi-manylinux.yml +++ b/.github/workflows/pypi-manylinux.yml @@ -26,7 +26,7 @@ jobs: python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310' build-requirements: 'cython' - name: Upload artifacts for inspection - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: manylinux_wheels path: dist/*-manylinux*.whl diff --git a/.github/workflows/pypi-sdist.yml b/.github/workflows/pypi-sdist.yml index f0eecbadf..e1822e36f 100644 --- a/.github/workflows/pypi-sdist.yml +++ b/.github/workflows/pypi-sdist.yml @@ -24,7 +24,7 @@ jobs: run: | python setup.py sdist - name: Upload artifacts for inspection - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: sdist path: dist/*.tar.gz diff --git a/.github/workflows/pypi-win.yml b/.github/workflows/pypi-win.yml index 4346fc906..597fddf73 100644 --- a/.github/workflows/pypi-win.yml +++ b/.github/workflows/pypi-win.yml @@ -32,7 +32,7 @@ jobs: run: | python setup.py bdist_wheel - name: Upload artifacts for inspection - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wheel_${{ matrix.os }}_${{ matrix.architecture }}_${{ matrix.python-version }} path: dist/*.whl