Skip to content

Commit 78b8f6f

Browse files
chore(deps): pin dependencies (main) (cloudnative-pg#7259)
1 parent e5874bc commit 78b8f6f

17 files changed

+197
-197
lines changed

.github/workflows/backport.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
-
2626
name: Label the pull request
27-
uses: actions-ecosystem/action-add-labels@v1
27+
uses: actions-ecosystem/action-add-labels@18f1af5e3544586314bbe15c0273249c770b2daf # v1
2828
if: ${{ !contains(github.event.pull_request.labels.*.name, 'do not backport') }}
2929
with:
3030
github_token: ${{ secrets.REPO_GHA_PAT }}
@@ -36,7 +36,7 @@ jobs:
3636
release-1.25
3737
-
3838
name: Create comment
39-
uses: peter-evans/create-or-update-comment@v4
39+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
4040
with:
4141
token: ${{ secrets.GITHUB_TOKEN }}
4242
issue-number: ${{ github.event.pull_request.number }}
@@ -49,7 +49,7 @@ jobs:
4949
reactions: heart
5050
-
5151
name: Remove redundant labels
52-
uses: actions-ecosystem/action-remove-labels@v1
52+
uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1
5353
if: ${{ contains(github.event.pull_request.labels.*.name, 'do not backport') }}
5454
with:
5555
github_token: ${{ secrets.REPO_GHA_PAT }}
@@ -82,14 +82,14 @@ jobs:
8282
-
8383
name: Checkout code
8484
if: contains( github.event.pull_request.labels.*.name, matrix.branch )
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
8686
with:
8787
fetch-depth: 0
8888
ref: ${{ matrix.branch }}
8989
token: ${{ secrets.REPO_GHA_PAT }}
9090
-
9191
name: Install Go
92-
uses: actions/setup-go@v5
92+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
9393
with:
9494
go-version: ${{ env.GOLANG_VERSION }}
9595
check-latest: true
@@ -144,7 +144,7 @@ jobs:
144144
runs-on: ubuntu-24.04
145145
steps:
146146
- name: create ticket
147-
uses: dacbd/create-issue-action@v2
147+
uses: dacbd/create-issue-action@cdb57ab6ff8862aa09fee2be6ba77a59581921c2 # v2
148148
with:
149149
token: ${{ secrets.GITHUB_TOKEN }}
150150
title: Backport failure for pull request ${{ env.PR }}

.github/workflows/chatops.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
steps:
1919
- name: Check User Permission
2020
id: checkUser
21-
uses: actions-cool/check-user-permission@v2
21+
uses: actions-cool/check-user-permission@7b90a27f92f3961b368376107661682c441f6103 # v2
2222
with:
2323
require: 'write'
2424
- name: Add "ok to merge :ok_hand:" label to PR
25-
uses: actions-ecosystem/action-add-labels@v1.1.3
25+
uses: actions-ecosystem/action-add-labels@18f1af5e3544586314bbe15c0273249c770b2daf # v1.1.3
2626
if: steps.checkUser.outputs.require-result == 'true'
2727
with:
2828
github_token: ${{ secrets.REPO_GHA_PAT }}

.github/workflows/close-inactive-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
issues: write
1313
#pull-requests: write
1414
steps:
15-
- uses: actions/stale@v9
15+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
1616
with:
1717
days-before-issue-stale: 60
1818
days-before-issue-close: 14

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
should_skip: ${{ steps.skip_check.outputs.should_skip == 'true' && github.ref != 'refs/heads/main' }}
4444
steps:
4545
- id: skip_check
46-
uses: fkirc/skip-duplicate-actions@v5.3.1
46+
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5.3.1
4747
with:
4848
concurrent_skipping: 'same_content'
4949
skip_after_successful_duplicate: 'true'
@@ -64,17 +64,17 @@ jobs:
6464

6565
steps:
6666
- name: Checkout repository
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6868

6969
- name: Install Go
70-
uses: actions/setup-go@v5
70+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
7171
with:
7272
go-version: ${{ env.GOLANG_VERSION }}
7373
check-latest: true
7474

7575
# Initializes the CodeQL tools for scanning.
7676
- name: Initialize CodeQL
77-
uses: github/codeql-action/init@v3
77+
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3
7878
with:
7979
languages: "go"
8080
build-mode: manual
@@ -91,6 +91,6 @@ jobs:
9191
make
9292
9393
- name: Perform CodeQL Analysis
94-
uses: github/codeql-action/analyze@v3
94+
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3
9595
with:
9696
category: "/language:go"

0 commit comments

Comments
 (0)