Skip to content

Commit 11d958c

Browse files
authored
Merge pull request #5 from BuilderOSS/bugfix/github-actions
updated action versions
2 parents 8df2656 + d67770c commit 11d958c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
uses: actions/checkout@v4.2.2 # Action for checking out a repo.
2626

2727
- name: Setup Node.js Environment
28-
uses: actions/setup-node@v4.1.0 # Action for setting up Node environment.
28+
uses: actions/setup-node@v4.4.0 # Action for setting up Node environment.
2929
with:
3030
node-version: latest
3131

3232
- name: Install PNPM package manager
33-
uses: pnpm/action-setup@v4.0.0 # Action for setting up pnpm.
33+
uses: pnpm/action-setup@v4.1.0 # Action for setting up pnpm.
3434
id: pnpm-install
3535
with:
3636
version: ^9
@@ -42,7 +42,7 @@ jobs:
4242
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
4343
4444
- name: Cache pnpm Store
45-
uses: actions/cache@v4.1.2 # Action provides caching dependencies and build outputs to improve workflow execution time.
45+
uses: actions/cache@v4.2.3 # Action provides caching dependencies and build outputs to improve workflow execution time.
4646
with:
4747
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} # The path of the directory to cache.
4848
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # An explicit key for restoring and saving the cache.
@@ -82,7 +82,7 @@ jobs:
8282

8383
# Generate a changelog for the new release using Git
8484
- name: Generate a changelog
85-
uses: orhun/git-cliff-action@v4.4.0
85+
uses: orhun/git-cliff-action@v4.4.2
8686
id: git-cliff
8787
with:
8888
config: cliff.toml # The configuration file for git-cliff

0 commit comments

Comments
 (0)