Skip to content

Commit 2fa711c

Browse files
Pin dependencies (#179)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent f634700 commit 2fa711c

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/actions/build/action.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ inputs:
1010
runs:
1111
using: "composite"
1212
steps:
13-
- uses: actions/setup-go@v5
13+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
1414
with:
1515
go-version: stable
1616
- name: Generate templ code
17-
uses: capthiron/templ-generator-action@v1
17+
uses: capthiron/templ-generator-action@f1f7b5d0b261eccff32fa3fc17cf563d993fee94 # v1
1818
with:
1919
commit: "false"
2020
setup-go: "false"
@@ -23,7 +23,7 @@ runs:
2323
run: go build -o bin/${{ inputs.binary_name }}
2424
shell: bash
2525
- name: Upload ${{ inputs.binary_name }} binary
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
2727
with:
2828
name: ${{ inputs.binary_name }}
2929
path: bin/${{ inputs.binary_name }}

.github/actions/setup/action.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ runs:
2727
using: "composite"
2828
steps:
2929
- name: Configure AWS credentials
30-
uses: aws-actions/configure-aws-credentials@v4
30+
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4
3131
with:
3232
role-to-assume: ${{ inputs.role_arn }}
3333
role-session-name: tailout-${{ github.job }}
3434
aws-region: ${{ inputs.region }}
3535
- name: Connect runner to tailscale
36-
uses: tailscale/github-action@v3
36+
uses: tailscale/github-action@8688eb839e58e6b25c1ae96cd99d1c173299b842 # v3
3737
with:
3838
oauth-client-id: ${{ inputs.tailscale_oauth_client_id }}
3939
oauth-secret: ${{ inputs.tailscale_oauth_client_secret }}
4040
version: ${{ inputs.tailscale_version }}
4141
tags: tag:github-actions-runner
4242
args: --operator=runner
4343
- name: Download ${{ inputs.binary_name }} binary
44-
uses: actions/download-artifact@v4
44+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
4545
with:
4646
name: ${{ inputs.binary_name }}
4747
path: bin/

.github/workflows/build-and-push.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
id-token: write
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2525
- name: Log in to the Container registry
2626
uses: docker/login-action@327cd5a69de6c009b9ce71bce8395f28e651bf99
2727
with:
@@ -42,7 +42,7 @@ jobs:
4242
tags: ${{ steps.meta.outputs.tags }}
4343
labels: ${{ steps.meta.outputs.labels }}
4444
- name: Generate artifact attestation
45-
uses: actions/attest-build-provenance@v2
45+
uses: actions/attest-build-provenance@520d128f165991a6c774bcb264f323e3d70747f4 # v2
4646
with:
4747
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
4848
subject-digest: ${{ steps.push.outputs.digest }}

.github/workflows/e2e.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
if: "github.actor != 'renovate[bot]'"
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3131
- name: Build tailout
3232
uses: ./.github/actions/build
3333
with:
@@ -49,7 +49,7 @@ jobs:
4949
second_command: "tailout disconnect"
5050
third_command: "tailout status"
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
5353
- name: Setup environment
5454
uses: ./.github/actions/setup
5555
with:
@@ -77,7 +77,7 @@ jobs:
7777
group: cleanup
7878
cancel-in-progress: true
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
8181
- name: Setup environment
8282
uses: ./.github/actions/setup
8383
with:

.github/workflows/release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515
goreleaser:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1919
with:
2020
fetch-depth: 0
2121
- run: git fetch --force --tags
22-
- uses: actions/setup-go@v5
22+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
2323
with:
2424
go-version: stable
2525
- name: Generate templ code
26-
uses: capthiron/templ-generator-action@v1
26+
uses: capthiron/templ-generator-action@f1f7b5d0b261eccff32fa3fc17cf563d993fee94 # v1
2727
with:
2828
commit: "false"
2929
setup-go: "false"
3030
directory: "internal/views"
3131
# More assembly might be required: Docker logins, GPG, etc. It all depends
3232
# on your needs.
33-
- uses: goreleaser/goreleaser-action@v6
33+
- uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6
3434
with:
3535
distribution: goreleaser
3636
version: latest

0 commit comments

Comments
 (0)