From 8f28e0ec322189450a32e07183a20c0c259143bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 19:04:29 +0000 Subject: [PATCH 1/2] build(deps): bump actions/upload-artifact from 3 to 4 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] --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 007742c6..37265f5e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -78,7 +78,7 @@ jobs: - run: python3 -m build # Upload dists as workflow artifacts. - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: dist path: dist/ @@ -189,7 +189,7 @@ jobs: # Upload installation archive as a workflow artifact. # # At least one path needs to match, or this errors. - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: standalone-${{ matrix.target }} path: | From 0fa9dd3669fb39ebb5cac65184f64ebfa118dcaa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 19:04:26 +0000 Subject: [PATCH 2/2] build(deps): bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 37265f5e..71014c0e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -131,7 +131,7 @@ jobs: # Build the executable + necessary external files from the dists. - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: dist path: dist/ @@ -259,7 +259,7 @@ jobs: with: python-version: ${{ matrix.python }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: dist path: dist/ @@ -309,7 +309,7 @@ jobs: python-version: '3.9' # Download and extract the installation archive. - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: standalone-${{ matrix.target }} @@ -358,20 +358,20 @@ jobs: python-version: "3.10" - run: python3 -m pip install --upgrade twine - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: dist path: dist/ - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: standalone-x86_64-unknown-linux-gnu - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: standalone-x86_64-apple-darwin - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: standalone-x86_64-pc-windows-msvc