Update redis requirement from ~=4.2 to ~=7.1 #335
This file contains hidden or 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: Resync piped | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths: ["piped", "piped.toml", "pyproject.toml"] | |
| jobs: | |
| resync-piped: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| with: | |
| submodules: "true" | |
| - name: Install Python | |
| uses: ./.github/actions/setup-py | |
| - name: Resync Piped | |
| run: nox -s copy-piped bot-package-diff | |
| - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 | |
| with: | |
| name: gogo.patch | |
| path: gogo.patch | |
| - name: Check diff file | |
| run: nox -s is-diff-file-empty |