Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ updates:
directory: ".github/actions/core" # Location of package manifests
schedule:
interval: "weekly"
cooldown:
default-days: 7
semver-major-days: 14
7 changes: 3 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Build & Test

on:
pull_request:
branches:
- main
branches: [main]
types:
- opened
- synchronize
Expand Down Expand Up @@ -51,7 +50,7 @@ jobs:
- name: Commit build artifacts (same-repo PRs only)
if: github.event.pull_request.head.repo.full_name == github.repository
id: commit_dist
uses: EndBug/add-and-commit@v10
uses: EndBug/add-and-commit@290ea2c423ad77ca9c62ae0f5b224379612c0321 # v10.0.0
with:
add: "."
message: "chore: build core action dist (auto)"
Expand Down Expand Up @@ -216,7 +215,7 @@ jobs:
fi

- name: Set Commit Status
uses: myrotvorets/set-commit-status-action@master
uses: myrotvorets/set-commit-status-action@2c3557527522d8d38f410941902b64a4be75a0ec # master
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ steps.status.outputs.status }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

name: "CodeQL Advanced"

on:
on: # zizmor: ignore[pull-request-target]
push:
branches: [main]
pull_request:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Generate Changelog
id: changelog
uses: mikepenz/release-changelog-builder-action@v6
uses: mikepenz/release-changelog-builder-action@348e88fab4c37338b1e803ceb2d4a7a5db6c0833 # v6
with:
configuration: "configuration.json"
mode: "COMMIT"
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
git push -f origin "v$MAJOR_VERSION"

- name: Create Release
uses: softprops/action-gh-release@v3
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3
with:
tag_name: "v${{ inputs.version }}"
name: "v${{ inputs.version }}"
Expand Down
Loading