Skip to content

Commit 5acd0f0

Browse files
chore(deps): update github actions
1 parent c5ee48b commit 5acd0f0

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/shared-codeql.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,34 +101,34 @@ jobs:
101101

102102
steps:
103103
- name: Checkout repository
104-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
104+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
105105

106106
- name: Set up Go
107107
if: inputs.go-check == true
108-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
108+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
109109
with:
110110
go-version: ${{ matrix.go-version }}
111111

112112
- name: Use Node.js ${{ matrix.node-version }}
113113
if: inputs.node-check == true
114-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
114+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
115115
with:
116116
node-version: ${{ matrix.node-version }}
117117

118118
- name: Initialize CodeQL
119-
uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3
119+
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
120120
with:
121121
languages: ${{ matrix.language }}
122122

123123
- name: Autobuild
124124
if: inputs.autobuild == true
125-
uses: github/codeql-action/autobuild@181d5eefc20863364f96762470ba6f862bdef56b # v3
125+
uses: github/codeql-action/autobuild@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
126126

127127
- name: Build
128128
if: needs.define-matrix.outputs.custom_build == 'true'
129129
run: ${{ needs.define-matrix.outputs.build_query }}
130130

131131
- name: Perform CodeQL Analysis
132-
uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3
132+
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
133133
with:
134134
category: "/language:${{matrix.language}}"

.github/workflows/shared-license.yaml

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

3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
34+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3535
with:
3636
token: ${{ secrets.GITHUB_TOKEN }}
3737
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -61,7 +61,7 @@ jobs:
6161
permission-contents: write
6262

6363
- name: Checkout
64-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
64+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
6565
with:
6666
token: ${{ steps.github-app-token.outputs.token != '' && steps.github-app-token.outputs.token || secrets.GITHUB_TOKEN }}
6767
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -74,7 +74,7 @@ jobs:
7474
mode: fix
7575

7676
- name: Apply Changes
77-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
77+
uses: EndBug/add-and-commit@290ea2c423ad77ca9c62ae0f5b224379612c0321 # v10
7878
with:
7979
author_name: License Bot
8080
author_email: license_bot@github.com

.github/workflows/shared-stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
issues: write
5454
pull-requests: write
5555
steps:
56-
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
56+
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10
5757
with:
5858
repo-token: ${{ secrets.GITHUB_TOKEN }}
5959
days-before-issue-stale: ${{ inputs.days-before-issue-stale }}

.github/workflows/sync-teams.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Sync teams
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1818
- uses: ./workflows/team-syncer
1919
with:
2020
GH_TOKEN: ${{ secrets.GH_TOKEN_TEAM_SYNCER }}

workflows/e2e/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ runs:
4040
steps:
4141

4242
- name: Checkout repository
43-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
43+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4444
with:
4545
repository: cloudoperators/greenhouse
4646
ref: ${{ inputs.ref }}
4747

4848
- name: Set up Go
49-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
49+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
5050
with:
5151
go-version-file: 'go.mod'
5252

workflows/issue-project-sync/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
using: "composite"
1515
steps:
1616
- name: Add issue to project
17-
uses: actions/add-to-project@v1.0.2
17+
uses: actions/add-to-project@5afcf98fcd03f1c2f92c3c83f58ae24323cc57fd # v2.0.0
1818
with:
1919
project-url: ${{ inputs.PROJECT_URL }}
2020
github-token: ${{ inputs.GH_TOKEN }}

0 commit comments

Comments
 (0)