diff --git a/.github/workflows/assign_reviewers.yml b/.github/workflows/assign_reviewers.yml index 45eb8e0..2e95ea3 100644 --- a/.github/workflows/assign_reviewers.yml +++ b/.github/workflows/assign_reviewers.yml @@ -12,6 +12,6 @@ jobs: steps: - name: Assign reviewer - uses: kentaro-m/auto-assign-action@v1.1.2 + uses: kentaro-m/auto-assign-action@v1.2.5 with: repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml index 6ad0d4b..bab1d98 100644 --- a/.github/workflows/bump_version.yml +++ b/.github/workflows/bump_version.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout master branch - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.base.ref }} @@ -20,7 +20,7 @@ jobs: commitish: ${{ github.event.pull_request.base.ref }} env: GITHUB_TOKEN: ${{ secrets.BP_PAT_TOKEN }} - + - name: Get previous release version run: | echo "PREV_VER=$(cat pyproject.toml | grep -o -E '(version\s=\s)([[:punct:]])([0-9]+\.[0-9]+\.[0-9]+.+)([[:punct:]])' | cut -d ' ' -f 3 | tr -d '"')" >> $GITHUB_ENV diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index a0c0321..5dc1ce3 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -3,9 +3,9 @@ name: Lint workflow on: push: - branches: ['*', '!push-action/*'] + branches: ["*", "!push-action/*"] pull_request: - branches: ['*', '!push-action/*'] + branches: ["*", "!push-action/*"] jobs: quality: @@ -18,11 +18,11 @@ jobs: uses: actions/checkout@master - name: Setup Python 3.10 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: "3.10" - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-3.10 @@ -37,7 +37,7 @@ jobs: - name: Load cached venv id: cached-poetry-dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: .venv key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}-3.10