Skip to content

Commit 308c2bb

Browse files
Merge branch 'main' into dev-delete
2 parents c6a1c09 + 8b12c73 commit 308c2bb

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@
33
# SPDX-License-Identifier: Apache-2.0
44
version: 2
55
updates:
6-
- package-ecosystem: "github-actions"
6+
- package-ecosystem: "github-actions"
77
directory: "/"
88
schedule:
99
interval: "weekly"
10-
- package-ecosystem: "gomod"
10+
groups:
11+
github-actions:
12+
patterns:
13+
- "*"
14+
15+
- package-ecosystem: "gomod"
1116
directory: "/"
1217
schedule:
1318
interval: "weekly"
19+
groups:
20+
go-dependencies:
21+
patterns:
22+
- "*"

.github/workflows/dev-nightlies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: sdcio-action-runners
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: startsWith(github.ref, 'refs/tags/v')
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
unittest:
2020
runs-on: ubuntu-22.04
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- uses: actions/setup-go@v5
2525
with:
@@ -45,7 +45,7 @@ jobs:
4545
configversion: ${{ steps.image.outputs.version }}
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949
with:
5050
ref: ${{ github.head_ref }}
5151
fetch-depth: 0

0 commit comments

Comments
 (0)