Skip to content

Commit bea128b

Browse files
authored
Merge pull request #175 from Cysharp/feature/pin_action
ci: Pinning third party GitHub Actions sha
2 parents 00f2995 + 5ce0eb9 commit bea128b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/dependabot.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "weekly" # Check for updates to GitHub Actions every week
8+
ignore:
9+
# I just want update action when major/minor version is updated. patch updates are too noisy.
10+
- dependency-name: '*'
11+
update-types:
12+
- version-update:semver-patch

.github/workflows/build-debug.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
timeout-minutes: 10
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
1919
- run: dotnet build -c Debug
2020
- run: dotnet test -c Debug --no-build

.github/workflows/build-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 10
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
2222
# pack nuget
2323
- run: dotnet build -c Release -p:Version=${{ inputs.tag }}

0 commit comments

Comments
 (0)