Skip to content

Commit 5859cb6

Browse files
authored
Merge branch 'master' into docker_deps
2 parents 0d6d9b7 + 435f488 commit 5859cb6

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/build-image-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
>> $GITHUB_ENV
5959
6060
- name: Set up Docker Buildx
61-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
61+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
6262
if: steps.changed-files-specific.outputs.any_changed == 'true'
6363

6464
- name: Build if Dockerfile changed
@@ -104,7 +104,7 @@ jobs:
104104
105105
- name: Dive - check image for waste files
106106
if: steps.changed-files-specific.outputs.any_changed == 'true'
107-
uses: MaxymVlasov/dive-action@43dafd0015826beaca5110157c9262c5dc10672a # v1.4.0
107+
uses: MaxymVlasov/dive-action@b08c8287e603d028c986d7044e83fa76bcca6a65 # v1.5.0
108108
with:
109109
image: ${{ env.IMAGE }}
110110
config-file: ${{ github.workspace }}/.github/.dive-ci.yaml

.github/workflows/build-image.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
persist-credentials: false
2626

2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
28+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
2929
- name: Login to GitHub Container Registry
30-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
30+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
3131
with:
3232
registry: ghcr.io
3333
username: ${{ github.repository_owner }}
@@ -49,7 +49,7 @@ jobs:
4949
run: >-
5050
echo "IMAGE_REPO=ghcr.io/${GITHUB_REPOSITORY@L}" >> $GITHUB_ENV
5151
- name: Set up Docker Buildx
52-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
52+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
5353

5454
- name: Build and Push release
5555
if: github.event_name != 'schedule'

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
echo "dir=$(python -m pip cache dir)" >> "${GITHUB_OUTPUT}"
166166
shell: bash
167167
- name: Set up pip cache
168-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
168+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
169169
with:
170170
path: ${{ steps.pip-cache-dir.outputs.dir }}
171171
key: >-
@@ -311,7 +311,7 @@ jobs:
311311
run: >-
312312
echo "dir=$(python -m pip cache dir)" >> "${GITHUB_OUTPUT}"
313313
- name: Set up pip cache
314-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
314+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
315315
with:
316316
path: ${{ steps.pip-cache-dir.outputs.dir }}
317317
key: >-

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL
52-
uses: github/codeql-action/init@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
52+
uses: github/codeql-action/init@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
5353
with:
5454
languages: ${{ matrix.language }}
5555
# If you wish to specify custom queries, you can do so here or in
@@ -61,7 +61,7 @@ jobs:
6161
# If this step fails, then you should remove it and run the build
6262
# manually (see below)
6363
- name: Autobuild
64-
uses: github/codeql-action/autobuild@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
64+
uses: github/codeql-action/autobuild@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
6565

6666
# ℹ️ Command-line programs to run using the OS shell.
6767
# yamllint disable-line rule:line-length
@@ -76,6 +76,6 @@ jobs:
7676
# ./location_of_script_within_repo/buildscript.sh
7777

7878
- name: Perform CodeQL Analysis
79-
uses: github/codeql-action/analyze@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
79+
uses: github/codeql-action/analyze@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
8080
with:
8181
category: /language:${{matrix.language}}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fetch-depth: 0
3737

3838
- name: Release
39-
uses: cycjimmy/semantic-release-action@0a51e81a6baff2acad3ee88f4121c589c73d0f0e # v4.2.0
39+
uses: cycjimmy/semantic-release-action@16ca923e6ccbb50770c415a0ccd43709a8c5f7a4 # v4.2.2
4040
with:
4141
semantic_version: 18.0.0
4242
extra_plugins: |

.github/workflows/reusable-tox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183

184184
- name: Cache pre-commit.com virtualenvs
185185
if: inputs.toxenv == 'pre-commit'
186-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
186+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
187187
with:
188188
path: ~/.cache/pre-commit
189189
key: >-
@@ -241,7 +241,7 @@ jobs:
241241
shell: bash
242242
- name: Set up pip cache
243243
if: fromJSON(steps.py-abi.outputs.is-stable-abi)
244-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
244+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
245245
with:
246246
path: ${{ steps.pip-cache-dir.outputs.dir }}
247247
key: >-

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
persist-credentials: false
4343

4444
- name: Run analysis
45-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
45+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
4646
with:
4747
results_file: results.sarif
4848
results_format: sarif
@@ -74,6 +74,6 @@ jobs:
7474

7575
# Upload the results to GitHub's code scanning dashboard.
7676
- name: Upload to code-scanning
77-
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
77+
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
7878
with:
7979
sarif_file: results.sarif

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ Or, using Docker ([available tags](https://github.com/antonbabenko/pre-commit-te
303303
304304
```bash
305305
TAG=latest
306-
docker run -e "USERID=$(id -u):$(id -g)" -v $(pwd):/lint -w /lint ghcr.io/antonbabenko/pre-commit-terraform:$TAG run -a
306+
docker run -e "USERID=$(id -u):$(id -g)" -v "$(pwd):/lint" -w "/lint" "ghcr.io/antonbabenko/pre-commit-terraform:$TAG" run -a
307307
```
308308

309309
Execute this command to list the versions of the tools in Docker:

0 commit comments

Comments
 (0)