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

Combined mend PRs #425

Merged
merged 6 commits into from
Jan 4, 2023
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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
name: Run Tartufo
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
name: Checkout the repo
- uses: godaddy/tartufo-action@3d4684c758fa9fdaf9b9cb044d0b9daa86606525
- uses: godaddy/tartufo-action@c8607e0e526850e5c5f0608459288b40f50fddbc
name: Run Tartufo
unit-test:
name: Unit Tests
Expand All @@ -35,9 +35,9 @@ jobs:
PYTHON: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
name: Checkout the repo
- uses: actions/cache@c17f4bf4666a8001b1a45c09eb7a485c41aa64c3
- uses: actions/cache@365406cb701e1cc758077b05049298a49a8b71c2
name: Cache Poetry & Tox deps
with:
path: |
Expand All @@ -48,7 +48,7 @@ jobs:
${{ matrix.os }}-venvs-${{ matrix.python-version }}
${{ matrix.os }}-venvs
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984
uses: actions/setup-python@dec86ecf4e7508d3930ae42abcdc575f35ea490d
with:
python-version: ${{ matrix.python-version }}
- name: Install Enchant
Expand All @@ -75,9 +75,9 @@ jobs:
matrix:
toxenv: [pylint, vulture, mypy, black, docs]
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
name: Checkout the repo
- uses: actions/cache@c17f4bf4666a8001b1a45c09eb7a485c41aa64c3
- uses: actions/cache@365406cb701e1cc758077b05049298a49a8b71c2
name: Cache Poetry & Tox deps
with:
path: |
Expand All @@ -87,7 +87,7 @@ jobs:
restore-keys: |
venvs-${{ matrix.toxenv }}-
- name: Set up Python
uses: actions/setup-python@2c3dd9e7e29afd70cc0950079bde6c979d1f69f9
uses: actions/setup-python@dec86ecf4e7508d3930ae42abcdc575f35ea490d
with:
python-version: 3.11
- name: Install dependencies
Expand All @@ -102,10 +102,10 @@ jobs:
runs-on: ubuntu-latest
needs: [ tartufo ]
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
name: Checkout the repo
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325
uses: docker/setup-buildx-action@c252a3bb80dae98127b9329b8aa1ff35b71ae980
with:
install: true
- name: Build and Verify
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand All @@ -38,9 +38,9 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@0dc37c7260df8e43e9d5a7d4455662fda84240b3
uses: github/codeql-action/init@ff3337ee1b38c9bcf43046bde6450e50c5e88ebb
with:
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@0dc37c7260df8e43e9d5a7d4455662fda84240b3
uses: github/codeql-action/analyze@ff3337ee1b38c9bcf43046bde6450e50c5e88ebb
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
- name: Set up Python 3.7
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984
uses: actions/setup-python@dec86ecf4e7508d3930ae42abcdc575f35ea490d
with:
python-version: 3.7
- name: Install dependencies
Expand Down