From c6ecb497e56b404824fb1d3290b84d87e1e8c87e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 17:13:54 +0000 Subject: [PATCH] Bump the github-actions-all group with 4 updates Bumps the github-actions-all group with 4 updates: [actions/cache](https://github.com/actions/cache), [actions/setup-python](https://github.com/actions/setup-python), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `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) Updates `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) Updates `softprops/action-gh-release` from 1 to 2 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v1...v2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9e30cd..5d33b0c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Cache Python Packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.config/pypoetry @@ -34,7 +34,7 @@ jobs: pipx install vscode-task-runner - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version-file: .python-version cache: poetry @@ -45,7 +45,7 @@ jobs: - name: Cache PyInstaller id: cache-pynstaller - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: build key: pyinstaller-cache-${{ hashFiles('poetry.lock', 'app/**') }} @@ -61,14 +61,14 @@ jobs: - name: Upload GUI Artifact if: github.event_name != 'push' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: GUI path: dist/*.exe - name: Create Release if: github.event_name != 'pull_request' - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: tag_name: ${{ env.SHORT_SHA }} files: dist/*.exe