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: semantic-release/github
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v10.0.2
Choose a base ref
...
head repository: semantic-release/github
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7a0bc89925208125632d973f59ee1df08530f05d
Choose a head ref
  • 10 commits
  • 4 files changed
  • 2 contributors

Commits on Mar 18, 2024

  1. ci(corepack): pinned the expected dev version of npm and explicitly u…

    …sed it for audit signatures (#796)
    travi authored Mar 18, 2024
    Copy the full SHA
    f628e14 View commit details
  2. chore(deps): update dependency semantic-release to v23.0.4 (#799)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 18, 2024
    Copy the full SHA
    0b2cba2 View commit details
  3. chore(deps): lock file maintenance (#791)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 18, 2024
    Copy the full SHA
    526ea67 View commit details
  4. chore(deps): update dependency semantic-release to v23.0.5 (#800)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 18, 2024
    Copy the full SHA
    470490f View commit details

Commits on Mar 24, 2024

  1. chore(deps): update dependency semantic-release to v23.0.6 (#801)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 24, 2024
    Copy the full SHA
    cd4e0e5 View commit details

Commits on Mar 25, 2024

  1. chore(deps): lock file maintenance (#802)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 25, 2024
    Copy the full SHA
    6ec0b63 View commit details

Commits on Apr 1, 2024

  1. chore(deps): lock file maintenance (#804)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 1, 2024
    Copy the full SHA
    10ff7e1 View commit details

Commits on Apr 3, 2024

  1. chore(deps): update npm to v10.5.1

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 3, 2024
    Copy the full SHA
    73828ed View commit details
  2. chore(deps): update dependency semantic-release to v23.0.7 (#807)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 3, 2024
    Copy the full SHA
    bccd140 View commit details

Commits on Apr 6, 2024

  1. fix(deps): update dependency @octokit/plugin-paginate-rest to v11 (#810)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 6, 2024
    Copy the full SHA
    7a0bc89 View commit details
Showing with 980 additions and 1,014 deletions.
  1. +2 −1 .github/workflows/release.yml
  2. +2 −2 .github/workflows/test.yml
  3. +972 −1,008 package-lock.json
  4. +4 −3 package.json
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,8 @@ jobs:
with:
cache: npm
node-version: lts/*
- run: npm ci
- run: npm clean-install
- run: corepack npm audit signatures
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ jobs:
node-version: "${{ matrix.node-version }}"
cache: npm
- run: npm clean-install
- run: npm audit signatures
- run: corepack npm audit signatures
- run: npm test

# verify against the node version defined for development in the .nvmrc
@@ -51,7 +51,7 @@ jobs:
node-version-file: .nvmrc
cache: npm
- run: npm clean-install
- run: npm audit signatures
- run: corepack npm audit signatures
- run: npm test

# separate job to set as required in branch protection,
Loading