Skip to content
Merged
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
9 changes: 1 addition & 8 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,12 @@ runs:
if: runner.os == 'macOS' && inputs.p12-password && inputs.p12-file-base64
run: security delete-keychain signing_temp.keychain || true

- uses: apple-actions/import-codesign-certs@v2
- uses: apple-actions/import-codesign-certs@v6
if: runner.os == 'macOS' && inputs.p12-password && inputs.p12-file-base64
with:
p12-file-base64: ${{ inputs.p12-file-base64 }}
p12-password: ${{ inputs.p12-password }}

# Needed for self-hosted runner, since it doesn't destroy itself automatically.
- name: Delete keychain
uses: webiny/action-post-run@3.0.0
if: runner.os == 'macOS' && inputs.p12-password && inputs.p12-file-base64
with:
run: security delete-keychain signing_temp.keychain

# the intention is to make none of these required eventually
- name: apt-get install
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
outputs:
matrix: ${{ steps.process-diff.outputs.matrix }}
steps:
- uses: pkgxdev/setup@v4
- uses: pkgxdev/setup@v5
- uses: actions/checkout@v6
- uses: technote-space/get-diff-action@v6
id: get-diff
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
p12-password: ${{ secrets.APPLE_CERTIFICATE_P12_PASSWORD }}
APPLE_IDENTITY: ${{ github.repository == 'pkgxdev/pantry' && secrets.APPLE_IDENTITY || '-' }}

- uses: pkgxdev/setup@v4
- uses: pkgxdev/setup@v5
with:
PKGX_DIR: /opt

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pkg-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
p12-password: ${{ secrets.APPLE_CERTIFICATE_P12_PASSWORD }}
APPLE_IDENTITY: ${{ secrets.APPLE_IDENTITY }}

- uses: pkgxdev/setup@v4
- uses: pkgxdev/setup@v5
with:
PKGX_DIR: /opt

Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:

- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- uses: pkgxdev/setup@v4
- uses: pkgxdev/setup@v5

- uses: pkgxdev/brewkit/download-build-artifact@v1
with:
Expand All @@ -152,7 +152,7 @@ jobs:
AWS: ${{ inputs.dry-run && 'echo' || 'aws' }}
PREFIX: ${{ needs.build.outputs.project }}/${{ needs.build.outputs.platform }}/${{ needs.build.outputs.arch }}/v${{ needs.build.outputs.version }}.tar.${{ matrix.compression }}
steps:
- uses: pkgxdev/setup@v4
- uses: pkgxdev/setup@v5

- uses: actions/checkout@v6

Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- uses: pkgxdev/setup@v4
- uses: pkgxdev/setup@v5

- name: generate versions.txt
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
matrix: ${{ steps.matrix.outputs.matrix }}
pkg: ${{ steps.id.outputs.pkg-json }}
steps:
- uses: pkgxdev/setup@v4
- uses: pkgxdev/setup@v5
- uses: actions/checkout@v6
- run: .github/scripts/get-matrix.ts ${{ inputs.pkg }}
id: matrix
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/restock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
outputs:
versions: ${{ steps.inventory.outputs.versions }}
steps:
- uses: pkgxdev/setup@v4
- uses: pkgxdev/setup@v5
- uses: actions/checkout@v6
- run: ./.github/scripts/inventory.ts ${{ inputs.project }}
id: inventory
Expand Down
Loading