Skip to content

Commit

Permalink
chore(dep,workflows): update actions and semantic-release (#621)
Browse files Browse the repository at this point in the history
* fix(lint): changelog styles.

* chore(dep,workflows): update actions and semantic-release.
  • Loading branch information
aorinevo authored Oct 3, 2023
1 parent d3f35b1 commit e595bd6
Show file tree
Hide file tree
Showing 6 changed files with 1,052 additions and 1,648 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
node: ['18', '20']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Yarn cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# This ensures our custom `GITHUB_TOKEN` is used by `semantic-release`
# instead of the default credentials. This is important for bypassing
# the branch protection rules that are configured for master.
# see https://github.com/semantic-release/semantic-release/blob/8fda7fd423d24e7b425fbee83790f49dd0478e2d/docs/recipes/ci-configurations/github-actions.md#pushing-packagejson-changes-to-a-master-branch
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Yarn cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
## [2.0.1](https://github.com/NerdWalletOSS/shepherd/compare/v2.0.0...v2.0.1) (2023-10-03)


### Bug Fixes

* **lockfiles:** add lock files. ([#619](https://github.com/NerdWalletOSS/shepherd/issues/619)) ([ea27c42](https://github.com/NerdWalletOSS/shepherd/commit/ea27c4204d82ea07ece587f021c81dd65d1f5166))
- **lockfiles:** add lock files. ([#619](https://github.com/NerdWalletOSS/shepherd/issues/619)) ([ea27c42](https://github.com/NerdWalletOSS/shepherd/commit/ea27c4204d82ea07ece587f021c81dd65d1f5166))

# [2.0.0](https://github.com/NerdWalletOSS/shepherd/compare/v1.16.0...v2.0.0) (2023-10-02)

Expand Down
Loading

0 comments on commit e595bd6

Please sign in to comment.