httpcat-cli 0.0.27-rc.7 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.github/dependabot.yml
CHANGED
|
@@ -3,7 +3,6 @@ updates:
|
|
|
3
3
|
# Enable version updates for npm
|
|
4
4
|
- package-ecosystem: "npm"
|
|
5
5
|
directory: "/"
|
|
6
|
-
target-branch: "develop"
|
|
7
6
|
schedule:
|
|
8
7
|
interval: "weekly"
|
|
9
8
|
open-pull-requests-limit: 5
|
|
@@ -17,7 +16,6 @@ updates:
|
|
|
17
16
|
# Enable version updates for GitHub Actions
|
|
18
17
|
- package-ecosystem: "github-actions"
|
|
19
18
|
directory: "/"
|
|
20
|
-
target-branch: "develop"
|
|
21
19
|
schedule:
|
|
22
20
|
interval: "weekly"
|
|
23
21
|
labels:
|
|
@@ -454,12 +454,10 @@ jobs:
|
|
|
454
454
|
runs-on: ubuntu-latest
|
|
455
455
|
needs: [prepare, publish-npm]
|
|
456
456
|
steps:
|
|
457
|
-
- name: Checkout
|
|
457
|
+
- name: Checkout code
|
|
458
458
|
uses: actions/checkout@v6
|
|
459
459
|
with:
|
|
460
|
-
repository: hathbanger/homebrew-httpcat
|
|
461
460
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
462
|
-
path: homebrew-tap
|
|
463
461
|
|
|
464
462
|
- name: Wait for npm CDN propagation
|
|
465
463
|
run: |
|
|
@@ -490,7 +488,7 @@ jobs:
|
|
|
490
488
|
run: |
|
|
491
489
|
VERSION="${{ needs.prepare.outputs.version }}"
|
|
492
490
|
SHA256="${{ steps.npm-sha.outputs.sha256 }}"
|
|
493
|
-
FORMULA_FILE="homebrew-
|
|
491
|
+
FORMULA_FILE="homebrew-httpcat/Formula/httpcat.rb"
|
|
494
492
|
|
|
495
493
|
# Update version
|
|
496
494
|
sed -i.bak "s|url \".*httpcat-cli-.*\.tgz\"|url \"https://registry.npmjs.org/httpcat-cli/-/httpcat-cli-${VERSION}.tgz\"|" "$FORMULA_FILE"
|
|
@@ -508,11 +506,10 @@ jobs:
|
|
|
508
506
|
|
|
509
507
|
- name: Commit and push Homebrew formula update
|
|
510
508
|
run: |
|
|
511
|
-
cd homebrew-tap
|
|
512
509
|
git config user.name "github-actions[bot]"
|
|
513
510
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
514
|
-
git add Formula/httpcat.rb
|
|
515
|
-
git commit -m "
|
|
511
|
+
git add homebrew-httpcat/Formula/httpcat.rb
|
|
512
|
+
git commit -m "chore: update Homebrew formula to v${{ needs.prepare.outputs.version }}" || exit 0
|
|
516
513
|
git push
|
|
517
514
|
|
|
518
515
|
# Job 5: Create GitHub Release
|