Skip to content

Commit 2dc1e35

Browse files
build(deps): Bump rollkit/.github from 0.4.0 to 0.4.1 (#1757)
Bumps [rollkit/.github](https://github.com/rollkit/.github) from 0.4.0 to 0.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rollkit/.github/releases">rollkit/.github's releases</a>.</em></p> <blockquote> <h2>v0.4.1</h2> <h2>What's Changed</h2> <ul> <li>fix(ci): remove unsupported linux/arm64 by <a href="https://github.com/MSevey"><code>@​MSevey</code></a> in <a href="https://redirect.github.com/rollkit/.github/pull/14">rollkit/.github#14</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rollkit/.github/compare/v0.4.0...v0.5.0">https://github.com/rollkit/.github/compare/v0.4.0...v0.5.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rollkit/.github/commit/03591d910acd39671256de67ce9c1485a6825fe6"><code>03591d9</code></a> fix(ci): remove unsupported linux/arm64 (<a href="https://redirect.github.com/rollkit/.github/issues/14">#14</a>)</li> <li>See full diff in <a href="https://github.com/rollkit/.github/compare/v0.4.0...v0.4.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rollkit/.github&package-manager=github_actions&previous-version=0.4.0&new-version=0.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 01782da commit 2dc1e35

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
steps:
8989
- uses: actions/checkout@v4
9090
- name: Version Release
91-
uses: rollkit/.github/.github/actions/[email protected].0
91+
uses: rollkit/.github/.github/actions/[email protected].1
9292
with:
9393
github-token: ${{secrets.GITHUB_TOKEN}}
9494
version-bump: ${{inputs.version}}

.github/workflows/docker-build-da-mockserv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
contents: write
1616
packages: write
17-
uses: rollkit/.github/.github/workflows/[email protected].0 # yamllint disable-line rule:line-length
17+
uses: rollkit/.github/.github/workflows/[email protected].1 # yamllint disable-line rule:line-length
1818
with:
1919
dockerfile: docker/mockserv.Dockerfile
2020
packageName: mockserv

.github/workflows/housekeeping.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
issue-management:
1111
if: ${{ github.event.issue }}
1212
name: Add issues to project and add triage label
13-
uses: rollkit/.github/.github/workflows/[email protected].0
13+
uses: rollkit/.github/.github/workflows/[email protected].1
1414
secrets: inherit
1515
permissions:
1616
issues: write
@@ -25,7 +25,7 @@ jobs:
2525
# ignore dependabot PRs
2626
if: ${{ github.event.pull_request && github.actor != 'dependabot[bot]' }}
2727
name: Add PRs to project
28-
uses: rollkit/.github/.github/workflows/[email protected].0
28+
uses: rollkit/.github/.github/workflows/[email protected].1
2929
secrets: inherit
3030
permissions:
3131
issues: write
@@ -37,7 +37,7 @@ jobs:
3737
auto-add-reviewer:
3838
name: Auto add reviewer to PR
3939
if: github.event.pull_request
40-
uses: rollkit/.github/.github/workflows/[email protected].0
40+
uses: rollkit/.github/.github/workflows/[email protected].1
4141
secrets: inherit
4242
permissions:
4343
issues: write

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,21 @@ jobs:
3737

3838
# hadolint lints the Dockerfile
3939
hadolint:
40-
uses: rollkit/.github/.github/workflows/[email protected].0 # yamllint disable-line rule:line-length
40+
uses: rollkit/.github/.github/workflows/[email protected].1 # yamllint disable-line rule:line-length
4141
with:
4242
dockerfile: test/docker/mockserv.Dockerfile
4343

4444
yamllint:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- uses: actions/checkout@v4
48-
- uses: rollkit/.github/.github/actions/[email protected].0
48+
- uses: rollkit/.github/.github/actions/[email protected].1
4949

5050
markdown-lint:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- uses: actions/checkout@v4
54-
- uses: rollkit/.github/.github/actions/[email protected].0
54+
- uses: rollkit/.github/.github/actions/[email protected].1
5555

5656
protobuf-lint:
5757
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)