Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8590a76

Browse files
chore(deps): pin dependencies (#87)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent e0bb394 commit 8590a76

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/actions/docker-build/action.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,23 @@ runs:
3434
using: 'composite'
3535
steps:
3636
- name: Login to GitHub Container Registry
37-
uses: docker/[email protected]
37+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
3838
with:
3939
registry: ${{ inputs.registry }}
4040
username: ${{ inputs.username }}
4141
password: ${{ inputs.password }}
4242
- name: Set up Docker Buildx
43-
uses: docker/[email protected]
43+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
4444
with:
4545
cache-binary: false
4646
- name: Validate build configuration
47-
uses: docker/[email protected]
47+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
4848
with:
4949
context: ${{ inputs.context }} # zizmor: ignore[template-injection]
5050
call: check
5151
- name: Extract metadata (tags, labels) for Docker
5252
id: meta
53-
uses: docker/[email protected]
53+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
5454
with:
5555
images: ${{ inputs.registry }}/${{ inputs.image }}
5656
# special case for .github to strip the leading period away since it is an invalid tag name
@@ -70,7 +70,7 @@ runs:
7070
} >> "$GITHUB_ENV"
7171
- name: Build and push Docker image
7272
id: push
73-
uses: docker/[email protected]
73+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
7474
with:
7575
context: ${{ inputs.context }} # zizmor: ignore[template-injection]
7676
# load image into docker to test it in the next step

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
permissions:
2323
contents: read
2424
steps:
25-
- uses: actions/[email protected]
25+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2626
with:
2727
persist-credentials: false
28-
- uses: pre-commit/[email protected]
28+
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
2929
env:
3030
# run in test when testing the markdownlint workflow
3131
SKIP: markdownlint-cli2

.github/workflows/docker-build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,28 @@ jobs:
2828
build-image:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/[email protected]
31+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3232
with:
3333
persist-credentials: false
3434
lfs: true
3535
- name: Login to GitHub Container Registry
36-
uses: docker/[email protected]
36+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
3737
with:
3838
registry: ${{ env.REGISTRY }}
3939
username: ${{ github.actor }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141
- name: Set up Docker Buildx
42-
uses: docker/[email protected]
42+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
4343
with:
4444
cache-binary: false
4545
- name: Validate build configuration
46-
uses: docker/[email protected]
46+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
4747
with:
4848
context: ${{ env.CONTEXT }} # zizmor: ignore[template-injection]
4949
call: check
5050
- name: Extract metadata (tags, labels) for Docker
5151
id: meta
52-
uses: docker/[email protected]
52+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
5353
with:
5454
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
5555
# special case for .github to strip the leading period away since it is an invalid tag name
@@ -69,7 +69,7 @@ jobs:
6969
} >> "$GITHUB_ENV"
7070
- name: Build and push Docker image
7171
id: push
72-
uses: docker/[email protected]
72+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
7373
with:
7474
context: ${{ env.CONTEXT }} # zizmor: ignore[template-injection]
7575
# load image into docker to test it in the next step

.github/workflows/markdownlint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
markdownlint:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/[email protected]
27+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2828
with:
2929
persist-credentials: false
3030
# Create config file since extra files are not possible in reusable workflows

.github/workflows/reuse.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/[email protected]
21+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2222
with:
2323
persist-credentials: false
2424
# LFS files required for REUSE

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
REGISTRY: ghcr.io
6969
IMAGE_NAME: ${{ github.repository }}
7070
steps:
71-
- uses: actions/[email protected]
71+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
7272
with:
7373
persist-credentials: false
7474
- uses: ./.github/actions/docker-build

0 commit comments

Comments
 (0)