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: actions/create-github-app-token
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.6.1
Choose a base ref
...
head repository: actions/create-github-app-token
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.2
Choose a head ref
  • 3 commits
  • 6 files changed
  • 3 contributors

Commits on Dec 5, 2023

  1. docs(README): fix use of deprecated arguments (#86)

    Using those fields that have an underscore (instead of a hyphen) cause
    the following warnings if used:
    ```
    Warning: Input 'app_id' has been deprecated with message: 'app_id' is deprecated and will be removed in a future version. Use 'app-id' instead.
    Warning: Input 'private_key' has been deprecated with message: 'private_key' is deprecated and will be removed in a future version. Use 'private-key' instead.
    ```
    
    So this PR just drops the last use of `app_id` and `private_key` from
    the README in favor of `app-id` and `private-key`.
    steverusso authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    8746053 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. fix: handle clock skew (#87)

    GitHub's macOS runners for the past while have had some bad clock drift
    which sometimes prevents this action from working with the error:
    
    ```console
    'Issued at' claim ('iat') must be an Integer representing the time that the assertion was issued
    ```
    
    `@octokit/auth-app` already has logic to handle this so we can defer to
    that code.
    Bo98 authored Dec 6, 2023
    Configuration menu
    Copy the full SHA
    495056a View commit details
    Browse the repository at this point in the history
  2. build(release): 1.6.2 [skip ci]

    ## [1.6.2](v1.6.1...v1.6.2) (2023-12-06)
    
    ### Bug Fixes
    
    * handle clock skew ([#87](#87)) ([495056a](495056a))
    semantic-release-bot committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    2986852 View commit details
    Browse the repository at this point in the history
Loading