Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Apple-Actions/import-codesign-certs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: recyclarr/import-codesign-certs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 6 commits
  • 6 files changed
  • 3 contributors

Commits on Nov 16, 2023

  1. Copy the full SHA
    0849db9 View commit details
  2. Update all packages

    jozefizso committed Nov 16, 2023
    Copy the full SHA
    0460258 View commit details
  3. Copy the full SHA
    56093ce View commit details
  4. Use @vercel/ncc package to pack the code

    The `@zeit/ncc` package is no longer maintained.
    jozefizso committed Nov 16, 2023
    Copy the full SHA
    1923310 View commit details

Commits on Jan 17, 2024

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c3b7e74 View commit details

Commits on Mar 9, 2024

  1. Copy the full SHA
    b7fe657 View commit details
Showing with 7,473 additions and 7,424 deletions.
  1. +1 −1 .nvmrc
  2. +1 −1 README.md
  3. +1 −1 action.yml
  4. +7,175 −7,157 dist/index.js
  5. +283 −252 package-lock.json
  6. +12 −12 package.json
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
20
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ Next, create a .p12 file that combines all of your certificates and private keys
Copy the .p12 format in base64:

```sh
base64 CertificateFile.p12 | pbcopy
base64 -i CertificateFile.p12 | pbcopy
```

Paste the output of the above command into a secret called `CERTIFICATES_P12` and the password into `CERTIFICATES_P12_PASSWORD` into the GitHub Actions Secrets in the GitHub settings.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ outputs:
security-response:
description: 'The output of the security commands.'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'lock'
Loading