Skip to content

Commit

Permalink
Combined mend PRs (#425)
Browse files Browse the repository at this point in the history
* chore(deps): update godaddy/tartufo-action digest to c8607e0

* chore(deps): update github/codeql-action digest to ff3337e

* chore(deps): update docker/setup-buildx-action digest to c252a3b

* chore(deps): update actions/cache digest to 365406c

* chore(deps): update actions/setup-python digest to dec86ec

* chore(deps): update actions/checkout digest to ac59398

Co-authored-by: Scott Bailey <scott.bailey@godaddy.com>
  • Loading branch information
rbailey-godaddy and rscottbailey authored Jan 4, 2023
1 parent 4a6ffea commit c34b192
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
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

0 comments on commit c34b192

Please sign in to comment.