Skip to content

Commit

Permalink
Merge branch 'main' into 1217-feature-automatic-catalog-inclusion-of-…
Browse files Browse the repository at this point in the history
…replication-keys
  • Loading branch information
edgarrmondragon authored Jan 17, 2023
2 parents dc588a4 + efb1142 commit aa5b6c1
Show file tree
Hide file tree
Showing 14 changed files with 187 additions and 125 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ body:
attributes:
label: Singer SDK Version
description: Version of the library you are using
placeholder: "0.16.0"
placeholder: "0.17.0"
validations:
required: true
- type: dropdown
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pip==22.3.1
poetry==1.3.1
poetry==1.3.2
nox==2022.11.21
nox-poetry==1.0.2
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0

- name: GitHub dependency vulnerability check
if: ${{ github.event_name == 'pull_request_target' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0

- name: Set up Python
uses: actions/setup-python@v4.4.0
uses: actions/setup-python@v4.5.0
with:
python-version: "3.10"

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0

- name: Install Poetry
env:
Expand All @@ -55,7 +55,7 @@ jobs:
poetry --version
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.4.0
uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Upload coverage data
if: always() && (matrix.session == 'tests')
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: coverage-data
path: ".coverage.*"
Expand All @@ -103,7 +103,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0

- name: Install Poetry
env:
Expand All @@ -113,7 +113,7 @@ jobs:
poetry --version
- name: Setup Python 3.10
uses: actions/setup-python@v4.4.0
uses: actions/setup-python@v4.5.0
with:
python-version: '3.10'
architecture: x64
Expand Down Expand Up @@ -145,15 +145,15 @@ jobs:
needs: tests
steps:
- name: Check out the repository
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0

- name: Install Poetry
run: |
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
poetry --version
- name: Set up Python
uses: actions/setup-python@v4.4.0
uses: actions/setup-python@v4.5.0
with:
python-version: '3.10'
cache: 'pip'
Expand All @@ -165,7 +165,7 @@ jobs:
pip --version
- name: Download coverage data
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: coverage-data

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
pull-requests: write # to create and update PRs

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.3.0
with:
fetch-depth: 0

Expand All @@ -44,14 +44,14 @@ jobs:
sudo chown -R $USER:$USER .git/objects
- name: Set up Python
uses: actions/setup-python@v4.4.0
uses: actions/setup-python@v4.5.0
with:
python-version: "3.10"
architecture: x64

- name: Bump version
id: cz-bump
uses: commitizen-tools/commitizen-action@0.15.1
uses: commitizen-tools/commitizen-action@0.16.0
with:
increment: ${{ github.event.inputs.bump != 'auto' && github.event.inputs.bump || '' }}
prerelease: ${{ github.event.inputs.prerelease != 'none' && github.event.inputs.prerelease || '' }}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ repos:
)$
- repo: https://github.com/python-poetry/poetry
rev: 1.3.1
rev: 1.3.2
hooks:
- id: poetry-check
- id: poetry-lock
Expand Down
Loading

0 comments on commit aa5b6c1

Please sign in to comment.