Skip to content

Commit cd57dee

Browse files
committed
updated action versions in deploy workflow
1 parent 6879cb5 commit cd57dee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
2525
# Set up Node.js and PNPM environment
2626
- name: Setup Node.js
27-
uses: actions/setup-node@v4.1.0
27+
uses: actions/setup-node@v4.4.0
2828
with:
2929
node-version: '20.x'
3030

3131
- name: Setup PNPM
32-
uses: pnpm/action-setup@v4.0.0
32+
uses: pnpm/action-setup@v4.1.0
3333
with:
3434
version: '9.x'
3535
run_install: false
@@ -41,7 +41,7 @@ jobs:
4141
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
4242
4343
- name: Cache pnpm Store
44-
uses: actions/cache@v4.1.2 # Action provides caching dependencies and build outputs to improve workflow execution time.
44+
uses: actions/cache@v4.2.3 # Action provides caching dependencies and build outputs to improve workflow execution time.
4545
with:
4646
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} # The path of the directory to cache.
4747
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # An explicit key for restoring and saving the cache.
@@ -73,7 +73,7 @@ jobs:
7373

7474
# Set up SSH agent for secure connection to the server
7575
- name: Set Up SSH
76-
uses: webfactory/ssh-agent@v0.9.0
76+
uses: webfactory/ssh-agent@v0.9.1
7777
with:
7878
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
7979

0 commit comments

Comments
 (0)