Skip to content

Commit 6e8ed4d

Browse files
chore(deps): update gh actions
| datasource | package | from | to | | ----------- | ---------------- | ------ | ------ | | github-tags | actions/checkout | v5.0.0 | v5.0.1 | | github-tags | actions/setup-go | v6.0.0 | v6.1.0 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
1 parent 0848e0a commit 6e8ed4d

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

.github/workflows/actionlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
contents: read
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2525
with:
2626
persist-credentials: false
2727

.github/workflows/build-docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
packages: write
2929
steps:
3030
- name: "Checkout"
31-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
31+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
3232
with:
3333
persist-credentials: false
3434
- name: "Login to GitHub Container Registry"
@@ -86,7 +86,7 @@ jobs:
8686
GITHUB_APP_PRIVATE_KEY=github-app:client-pem
8787
- name: Generate Token
8888
id: generate-token
89-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2
89+
uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2
9090
with:
9191
app-id: ${{ env.GITHUB_APP_ID }}
9292
private-key: ${{ env.GITHUB_APP_PRIVATE_KEY }}
@@ -95,13 +95,13 @@ jobs:
9595
sigma-rule-deployment
9696
sigma-rule-deployment-integration-test
9797
- name: Checkout Code
98-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
98+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
9999
with:
100100
token: ${{ steps.generate-token.outputs.token }}
101101
persist-credentials: false
102102
path: ./sigma-rule-deployment
103103
- name: Checkout Integration Test
104-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
104+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
105105
with:
106106
token: ${{ steps.generate-token.outputs.token }}
107107
persist-credentials: true

.github/workflows/close-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
GITHUB_APP_PRIVATE_KEY=github-app:client-pem
2323
- name: Generate Token
2424
id: generate-token
25-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2
25+
uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2
2626
with:
2727
app-id: ${{ env.GITHUB_APP_ID }}
2828
private-key: ${{ env.GITHUB_APP_PRIVATE_KEY }}

.github/workflows/convert-integrate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
console.log(`convert_all set to: ${convertAll}`);
126126
127127
- name: Checkout repository
128-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
128+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
129129
with:
130130
ref: ${{ github.event_name == 'issue_comment' && steps.get-pr-branch.outputs.result || github.head_ref }}
131131
fetch-depth: 0

.github/workflows/hadolint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
contents: read
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2525
with:
2626
persist-credentials: false
2727

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
contents: read
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2525
with:
2626
persist-credentials: false
2727

.github/workflows/unit-test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
checks: write
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
23+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2424
with:
2525
persist-credentials: false
2626

2727
- name: Setup Go
28-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
28+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
2929
with:
3030
go-version: "1.25.4"
3131
cache: false
@@ -44,7 +44,7 @@ jobs:
4444
checks: write
4545
steps:
4646
- name: Checkout repository
47-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
47+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
4848
with:
4949
persist-credentials: false
5050

@@ -81,12 +81,12 @@ jobs:
8181

8282
steps:
8383
- name: Checkout repository
84-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
84+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
8585
with:
8686
persist-credentials: false
8787

8888
- name: Setup Go
89-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
89+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
9090
with:
9191
go-version: "1.25.4"
9292
cache: false
@@ -109,12 +109,12 @@ jobs:
109109

110110
steps:
111111
- name: Checkout repository
112-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
112+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
113113
with:
114114
persist-credentials: false
115115

116116
- name: Setup Go
117-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
117+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
118118
with:
119119
go-version: "1.25.4"
120120
cache: false
@@ -137,12 +137,12 @@ jobs:
137137

138138
steps:
139139
- name: Checkout repository
140-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
140+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
141141
with:
142142
persist-credentials: false
143143

144144
- name: Setup Go
145-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
145+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
146146
with:
147147
go-version: "1.25.4"
148148
cache: false
@@ -164,7 +164,7 @@ jobs:
164164

165165
steps:
166166
- name: Checkout repository
167-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
167+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
168168
with:
169169
persist-credentials: false
170170

.github/workflows/validate-renovate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
18+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
1919
with:
2020
persist-credentials: false
2121
- name: Validate Renovate Config

actions/deploy/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ runs:
3535
steps:
3636
- name: "Checkout repository (fetch-depth: 0)"
3737
id: checkout
38-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
38+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
3939
with:
4040
persist-credentials: false
4141
fetch-depth: 0 # Important to ensure we'll have all the commits when a merge includes multiple

actions/validate/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ inputs:
1515
runs:
1616
using: "composite"
1717
steps:
18-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
18+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
1919
with:
2020
fetch-depth: 0
2121
persist-credentials: false

0 commit comments

Comments
 (0)