Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: bump coatl-dev/workflows from 3 to 4 #207

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:

jobs:
pre-commit:
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v3
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v4
with:
skip-hooks: 'pylint'

pylint:
needs: pre-commit
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v3
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v4
3 changes: 2 additions & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
paths:
- '.github/workflows/pr-build.yml'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question: Clarify the reason for adding this path.

Could you provide some context on why the '.github/workflows/pr-build.yml' path was added to the paths section? This will help in understanding the impact of this change.

- requirements/dev.txt
- 'src/**'
- Makefile
Expand All @@ -17,4 +18,4 @@ jobs:

tox:
needs: jython
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v3
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v4
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
pre-commit-autoupdate:
uses: coatl-dev/workflows/.github/workflows/pre-commit-autoupdate.yml@v3
uses: coatl-dev/workflows/.github/workflows/pre-commit-autoupdate.yml@v4
with:
skip-repos: 'flake8'
secrets:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ on:

jobs:
pre-commit:
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v3
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v4
with:
skip-hooks: 'pylint'

pylint:
needs: pre-commit
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v3
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v4

jython:
needs: pylint
uses: ./.github/workflows/jython.yml

tox:
needs: jython
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v3
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v4

pypi-publish:
needs: tox
uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v3
uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v4
with:
python-version: '2.7'
secrets:
Expand Down