Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 update to gopass-jsonapi 1.15.11 #8

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
14 changes: 7 additions & 7 deletions .github/workflows/chocolatey_installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Choco install googlechrome
uses: crazy-max/ghaction-chocolatey@v2
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install googlechrome --no-progress
args: install googlechrome --no-progress -ignore-checksums -y
- name: Choco install gopass
uses: crazy-max/ghaction-chocolatey@v2
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install gopass --no-progress
- name: Run gopass setup
run: gopass setup --crypto plain --storage fs
- name: Choco install gopass-jsonapi
uses: crazy-max/ghaction-chocolatey@v2
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install gopass-jsonapi\gopass-jsonapi.nuspec --no-progress --pre --params "'/Configure:true'"
args: install gopass-jsonapi --source=gopass-jsonapi --params "'/Configure:true'" --no-progress --pre
- name: Upload choco logs on failure
if: failure()
uses: actions/upload-artifact@v1
Expand All @@ -55,9 +55,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Choco install gopass-jsonapi
uses: crazy-max/ghaction-chocolatey@v2
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install gopass-jsonapi\gopass-jsonapi.nuspec --no-progress --pre
args: install gopass-jsonapi --source=gopass-jsonapi --no-progress --pre
- name: Upload choco logs on failure
if: failure()
uses: actions/upload-artifact@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/chocolatey_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
run: |
echo "::add-mask::${{ secrets.CHOCOLATEY_API_KEY }}"
- name: Choco pack ${{ inputs.choco_package }} ${{ inputs.choco_version }}
uses: crazy-max/ghaction-chocolatey@v2
uses: crazy-max/ghaction-chocolatey@v3
with:
args: >-
pack ${{ inputs.choco_package }}\${{ inputs.choco_package }}.nuspec
--out ${{ inputs.choco_package }}
- name: Choco push ${{ inputs.choco_package }} ${{ inputs.choco_version }}
uses: crazy-max/ghaction-chocolatey@v2
uses: crazy-max/ghaction-chocolatey@v3
with:
args: >-
push ${{ inputs.choco_package }}\${{ inputs.choco_package }}.${{ inputs.choco_version }}.nupkg
Expand Down
2 changes: 1 addition & 1 deletion gopass-jsonapi/gopass-jsonapi.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>gopass-jsonapi</id>
<version>1.15.5</version>
<version>1.15.11</version>
<packageSourceUrl>https://github.com/Mahagon/chocolatey-packages</packageSourceUrl>
<owners>Mahagon</owners>
<!-- ============================== -->
Expand Down
4 changes: 2 additions & 2 deletions gopass-jsonapi/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$ErrorActionPreference = 'Stop'

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64 = 'https://github.com/gopasspw/gopass-jsonapi/releases/download/v1.15.5/gopass-jsonapi-1.15.5-windows-amd64.zip'
$url64 = 'https://github.com/gopasspw/gopass-jsonapi/releases/download/v1.15.11/gopass-jsonapi-1.15.11-windows-amd64.zip'
$packageParameters = Get-PackageParameters

if (!$packageParameters['Browser']) { $packageParameters['Browser'] = 'chrome' }
Expand All @@ -13,7 +13,7 @@ $packageArgs = @{
unzipLocation = $toolsDir
url64bit = $url64
softwareName = 'gopass-jsonapi*'
checksum64 = '58400df5be024d4fbc76ffddfc801e36e9341bfd7fafd52be089287b2ae548da'
checksum64 = 'aedb0c46343bf11817b6b54fe273494264ea26e0dc952371e6147eaa1e531942'
checksumType64 = 'sha256'
}

Expand Down
Loading