diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 00aea0a7..63b36f3d 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -5,3 +5,8 @@ updates: directory: "/" schedule: interval: "weekly" # Check for updates to GitHub Actions every week + ignore: + # I just want update action when major/minor version is updated. patch updates are too noisy. + - dependency-name: '*' + update-types: + - version-update:semver-patch diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index 1f1949b2..ebe8372b 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: Cysharp/Actions/.github/actions/setup-dotnet@main - run: dotnet build -c Debug - run: dotnet test -c Debug --no-build diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 3017b072..8bce6036 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: Cysharp/Actions/.github/actions/setup-dotnet@main # pack nuget - run: dotnet build -c Release -p:Version=${{ inputs.tag }}