diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b239338 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: daily + commit-message: + prefix: "chore: " diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6d870b0..9e515cf 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -6,12 +6,6 @@ on: branches: - main - workflow_dispatch: - -env: - POETRY_VERSION: 1.3.0 - CACHE_NUMBER: 6 - jobs: release: # Run if we have a label `release` on a merged PR @@ -22,26 +16,14 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: 3.9 - - name: Install Poetry - uses: snok/install-poetry@v1 - with: - version: ${{ inputs.poetry_version }} - - name: Cache Pip - uses: actions/cache@v3 - with: - path: ~/.pip - key: pip${{ inputs.cache_number }}-PT${{ inputs.poetry_version }} - - run: poetry install + - name: Configure git run: | git config --global user.name 'GitHub Actions' git config --global user.email 'gha@prql-lang.org' + - name: Python Semantic Release - uses: relekang/python-semantic-release@master + uses: python-semantic-release/python-semantic-release@v7.33.2 with: github_token: ${{ secrets.PRQL_BOT_GH_TOKEN }} repository_username: __token__ diff --git a/pyproject.toml b/pyproject.toml index 23b4166..935cae8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ license = "Apache-2.0" name = "pyprql" readme = "README.md" repository = "https://github.com/prql/pyprql" -version = "0.5.14" +version = "0.5.13" [tool.poetry.dependencies] python = "^3.8"