diff --git a/.github/workflows/bump_poetry.yml b/.github/workflows/bump_poetry.yml index cf749fe1..f1b3f8ef 100644 --- a/.github/workflows/bump_poetry.yml +++ b/.github/workflows/bump_poetry.yml @@ -6,7 +6,7 @@ jobs: update-packages: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: 3.11 @@ -16,7 +16,9 @@ jobs: poetry-version: 1.4.2 - name: bump up patch version run: | - poetry version ${{ github.event.inputs.version }} + git config user.name github-actions + git config user.email github-actions@github.com + poetry version patch git add pyproject.toml - git commit -m "bump up ${{ github.event.inputs.version }} version from workflow" + git commit -m "bump up patch version from workflow" git push