Skip to content

Commit 1047003

Browse files
chore(deps): pin dependencies (#812)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9cd944a commit 1047003

6 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2020

2121
- name: Download image
22-
uses: actions/download-artifact@v4
22+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
2323
with:
2424
name: open-feature-operator-local-${{ github.sha }}
2525
path: ${{ github.workspace }}
2626

2727
- name: Cache build tools
2828
id: cache-build-tools
29-
uses: actions/cache@v4
29+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
3030
with:
3131
path: ./bin
3232
key: build-tools-${{ github.ref_name }}
@@ -36,7 +36,7 @@ jobs:
3636
docker load --input ${{ github.workspace }}/open-feature-operator-local.tar
3737
3838
- name: Create k8s Kind Cluster
39-
uses: helm/kind-action@v1.12.0
39+
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0
4040
with:
4141
config: ./test/e2e/kind-cluster.yml
4242
cluster_name: open-feature-operator-test
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Upload cluster logs
6666
if: failure()
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
6868
with:
6969
name: e2e-tests
7070
path: .github/scripts/logs

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
fail-fast: false
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
3131

32-
- uses: actions/setup-go@v5
32+
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
3333
with:
3434
go-version: ${{ env.GO_VERSION }}
3535
check-latest: true
@@ -38,7 +38,7 @@ jobs:
3838
run: make workspace-init
3939

4040
- name: golangci-lint
41-
uses: golangci/golangci-lint-action@v6
41+
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6
4242
with:
4343
working-directory: ./
4444
version: ${{ env.GOLANGCI_LINT_VERSION }}

.github/workflows/pr-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
name: Validate PR title
2121
runs-on: ubuntu-24.04
2222
steps:
23-
- uses: amannn/action-semantic-pull-request@v5
23+
- uses: amannn/action-semantic-pull-request@e32d7e603df1aa1ba07e981f2a23455dee596825 # v5
2424
id: lint_pr_title
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727

28-
- uses: marocchino/sticky-pull-request-comment@v2
28+
- uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2
2929
# When the previous steps fails, the workflow would stop. By adding this
3030
# condition you can continue the execution with the populated error message.
3131
if: always() && (steps.lint_pr_title.outputs.error_message != null)
@@ -43,7 +43,7 @@ jobs:
4343
4444
# Delete a previous comment when the issue has been resolved
4545
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
46-
uses: marocchino/sticky-pull-request-comment@v2
46+
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2
4747
with:
4848
header: pr-title-lint-error
4949
delete: true

.github/workflows/release-please.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
# Release-please creates a PR that tracks all changes
3030
steps:
31-
- uses: google-github-actions/release-please-action@v3
31+
- uses: google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3
3232
id: release
3333
with:
3434
command: manifest
@@ -48,7 +48,7 @@ jobs:
4848
if: ${{ needs.release-please.outputs.release_created }}
4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
5252
with:
5353
ref: ${{ needs.release-please.outputs.release_tag_name }}
5454

@@ -75,7 +75,7 @@ jobs:
7575
uses: docker/setup-buildx-action@master
7676

7777
- name: Build
78-
uses: docker/build-push-action@v6
78+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
7979
with:
8080
builder: ${{ steps.buildx.outputs.name }}
8181
context: .
@@ -114,12 +114,12 @@ jobs:
114114
if: ${{ needs.release-please.outputs.release_created }}
115115
steps:
116116
- name: Checkout
117-
uses: actions/checkout@v4
117+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
118118
with:
119119
ref: ${{ needs.release-please.outputs.release_tag_name }}
120120

121121
- name: Setup go
122-
uses: actions/setup-go@v5
122+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
123123
with:
124124
go-version: ${{ env.DEFAULT_GO_VERSION }}
125125
- run: |
@@ -129,12 +129,12 @@ jobs:
129129
IMG=ghcr.io/open-feature/open-feature-operator:${{ needs.release-please.outputs.release_tag_name }} make helm-package
130130
IMG=ghcr.io/open-feature/open-feature-operator:${{ needs.release-please.outputs.release_tag_name }} make release-manifests
131131
132-
- uses: anchore/sbom-action@v0
132+
- uses: anchore/sbom-action@e22c389904149dbc22b58101806040fa8d37a610 # v0
133133
with:
134134
output-file: ./open-feature-operator-sbom.spdx.json
135135

136136
- name: Release
137-
uses: softprops/action-gh-release@v1
137+
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
138138
with:
139139
tag_name: ${{ needs.release-please.outputs.release_tag_name }}
140140
files: |
@@ -150,13 +150,13 @@ jobs:
150150
if: ${{ needs.release-please.outputs.release_created }}
151151
steps:
152152
- name: Checkout
153-
uses: actions/checkout@v4
153+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
154154
with:
155155
fetch-depth: 0
156156
ref: ${{ env.GITHUB_PAGES_BRANCH }}
157157

158158
- name: Setup go
159-
uses: actions/setup-go@v5
159+
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
160160
with:
161161
go-version: ${{ env.DEFAULT_GO_VERSION }}
162162

.github/workflows/validate-crd-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1616

1717
- name: Cache build tools
1818
id: cache-build-tools
19-
uses: actions/cache@v4
19+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2020
with:
2121
path: ./bin
2222
key: build-tools-${{ github.ref_name }}

.github/workflows/validate-helm-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
steps:
1616
- name: Check out code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1818

1919
- name: Set up Node
20-
uses: actions/setup-node@v4.4.0
20+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2121
with:
2222
node-version: 16
2323

0 commit comments

Comments
 (0)