Skip to content

Commit e828ee6

Browse files
committed
Update action versions
1 parent b28bab6 commit e828ee6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/hypernode-deploy/getting-started/configure-ci-cd.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,19 +108,19 @@ jobs:
108108
# Here we use the latest Hypernode Deploy image with PHP 8.4 and Node.js 22
109109
container: quay.io/hypernode/deploy:latest-php8.4-node22
110110
steps:
111-
- uses: actions/checkout@v3
112-
- uses: actions/cache@v3
111+
- uses: actions/checkout@v5
112+
- uses: actions/cache@v4
113113
with:
114114
path: /tmp/composer-cache
115115
key: ${{ runner.os }}-composer
116-
- uses: webfactory/ssh-agent@v0.5.4
116+
- uses: webfactory/ssh-agent@v0.9.1
117117
with:
118118
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
119119
- run: hypernode-deploy build -vvv
120120
env:
121121
DEPLOY_COMPOSER_AUTH: ${{ secrets.DEPLOY_COMPOSER_AUTH }}
122122
- name: archive production artifacts
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
with:
125125
name: deployment-build
126126
path: build/build.tgz
@@ -143,13 +143,13 @@ jobs:
143143
# Here we use the latest Hypernode Deploy image with PHP 8.4 and Node.js 22
144144
container: quay.io/hypernode/deploy:latest-php8.4-node22
145145
steps:
146-
- uses: actions/checkout@v3
146+
- uses: actions/checkout@v5
147147
- name: download build artifact
148-
uses: actions/download-artifact@v4
148+
uses: actions/download-artifact@v5
149149
with:
150150
name: deployment-build
151151
path: build/
152-
- uses: webfactory/ssh-agent@v0.5.4
152+
- uses: webfactory/ssh-agent@v0.9.1
153153
with:
154154
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
155155
- run: mkdir -p $HOME/.ssh

0 commit comments

Comments
 (0)