Skip to content

Commit 223e827

Browse files
build(deps): Bump jetpack-io/devbox-install-action from 0.5.0 to 0.6.0 (#121)
Bumps [jetpack-io/devbox-install-action](https://github.com/jetpack-io/devbox-install-action) from 0.5.0 to 0.6.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jetpack-io/devbox-install-action/releases">jetpack-io/devbox-install-action's releases</a>.</em></p> <blockquote> <h2>Release 0.6.0</h2> <h2>What's Changed</h2> <ul> <li>fix: Use devbox.lock file for cache key rather than devbox.json by <a href="https://github.com/jimmidyson"><code>@​jimmidyson</code></a> in <a href="https://redirect.github.com/jetpack-io/devbox-install-action/pull/12">jetpack-io/devbox-install-action#12</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jetpack-io/devbox-install-action/compare/v0.5.0...v0.6.0">https://github.com/jetpack-io/devbox-install-action/compare/v0.5.0...v0.6.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jetpack-io/devbox-install-action/commit/a739e51e635070d256a4ab6916141c141a1eb987"><code>a739e51</code></a> fix: Use devbox.lock file for cache key rather than devbox.json (<a href="https://redirect.github.com/jetpack-io/devbox-install-action/issues/12">#12</a>)</li> <li><a href="https://github.com/jetpack-io/devbox-install-action/commit/1be8e967640d50d54fff5d77f3c02d7073874755"><code>1be8e96</code></a> Update README.md</li> <li>See full diff in <a href="https://github.com/jetpack-io/devbox-install-action/compare/v0.5.0...v0.6.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jetpack-io/devbox-install-action&package-manager=github_actions&previous-version=0.5.0&new-version=0.6.0)](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 17b982b commit 223e827

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v3
2828

2929
- name: Install devbox
30-
uses: jetpack-io/devbox-install-action@v0.5.0
30+
uses: jetpack-io/devbox-install-action@v0.6.0
3131
with:
3232
enable-cache: true
3333

@@ -54,7 +54,7 @@ jobs:
5454

5555
- if: steps.check_e2e_tests_exist.outputs.files_exists == 'true'
5656
name: Install devbox
57-
uses: jetpack-io/devbox-install-action@v0.5.0
57+
uses: jetpack-io/devbox-install-action@v0.6.0
5858
with:
5959
enable-cache: true
6060

@@ -81,7 +81,7 @@ jobs:
8181
uses: actions/checkout@v3
8282

8383
- name: Install devbox
84-
uses: jetpack-io/devbox-install-action@v0.5.0
84+
uses: jetpack-io/devbox-install-action@v0.6.0
8585
with:
8686
enable-cache: true
8787

@@ -132,7 +132,7 @@ jobs:
132132
ref: ${{ github.event.pull_request.head.sha }}
133133

134134
- name: Install devbox
135-
uses: jetpack-io/devbox-install-action@v0.5.0
135+
uses: jetpack-io/devbox-install-action@v0.6.0
136136
with:
137137
enable-cache: true
138138

@@ -156,7 +156,7 @@ jobs:
156156
fetch-depth: 0
157157

158158
- name: Install devbox
159-
uses: jetpack-io/devbox-install-action@v0.5.0
159+
uses: jetpack-io/devbox-install-action@v0.6.0
160160
with:
161161
enable-cache: true
162162

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
languages: ${{ matrix.language }}
3232

3333
- name: Install devbox
34-
uses: jetpack-io/devbox-install-action@v0.5.0
34+
uses: jetpack-io/devbox-install-action@v0.6.0
3535
with:
3636
enable-cache: true
3737

.github/workflows/release-tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fetch-depth: 0
2424

2525
- name: Install devbox
26-
uses: jetpack-io/devbox-install-action@v0.5.0
26+
uses: jetpack-io/devbox-install-action@v0.6.0
2727
with:
2828
enable-cache: true
2929

0 commit comments

Comments
 (0)