From 785ae56eba2e25fbeed590caea39f829752efa8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 18:39:54 +0300 Subject: [PATCH] Bump the github-actions group with 4 updates (#45) Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [benjlevesque/short-sha](https://github.com/benjlevesque/short-sha), [actions/setup-python](https://github.com/actions/setup-python) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) Updates `benjlevesque/short-sha` from 1.2 to 3.0 - [Release notes](https://github.com/benjlevesque/short-sha/releases) - [Commits](https://github.com/benjlevesque/short-sha/compare/v1.2...v3.0) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...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) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: benjlevesque/short-sha dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/python-app.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 25a7004..1a33367 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -14,10 +14,10 @@ jobs: Python_Version: 3.9 # 3.10 is missing pre-built `tflite-runtime` steps: - - uses: actions/checkout@v2 - - uses: benjlevesque/short-sha@v1.2 + - uses: actions/checkout@v4 + - uses: benjlevesque/short-sha@v3.0 - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install dependencies @@ -34,7 +34,7 @@ jobs: - name: Build single app for ${{ env.SCRIPT_NAME }} run: pyinstaller ${{ env.SCRIPT_NAME }}.py --icon=trik-studio.ico --onefile - name: Archive artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.SCRIPT_NAME }}-${{ runner.os }}-${{ env.SHA }} path: |