build(deps): bump actions/cache from 3 to 4 #176
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Pull Request" | |
on: | |
pull_request: | |
jobs: | |
py-lint: | |
uses: ./.github/workflows/py-lint.yml | |
cpp-lint: | |
uses: ./.github/workflows/cpp-lint.yml | |
build: | |
uses: ./.github/workflows/build.yml | |
comment: | |
name: Bot comment | |
needs: | |
- py-lint | |
- cpp-lint | |
- build | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- uses: thollander/actions-comment-pull-request@v2 | |
with: | |
comment_tag: bot_comment | |
mode: recreate | |
GITHUB_TOKEN: ${{ secrets.PAT }} | |
message: | | |
## :arrow_right: Commit ${{ github.event.pull_request.head.sha }} | |
## :clipboard: [Logs](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) | |
## :mag: Linting results: | |
${{ needs.py-lint.result == 'success' && ':heavy_check_mark:' || ':x:' }} Python Linting | |
${{ needs.cpp-lint.result == 'success' && ':heavy_check_mark:' || ':x:' }} C++ Linting | |
## :hammer_and_wrench: Building result: | |
${{ needs.build.result == 'success' && ':heavy_check_mark:' || ':x:' }} Building | |
## :package: Artifacts: | |
If the building step was successfull, you can download the appropriate tarball in the artifacts section [here](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}). | |
Uninstall the previous version, unzip and then execute `sudo tar -C / --no-same-owner -h -vxzf linux-enable-ir-emitter*.tar.gz`. |