Skip to content

Commit 98f7175

Browse files
authored
chore(ci): update deprecated GitHub actions tools (#17494)
1 parent d16cbaf commit 98f7175

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/components-test-build-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
- name: 'build components'
106106
run: make -C components
107107
- name: 'upload github artifact'
108-
uses: actions/upload-artifact@v3
108+
uses: actions/upload-artifact@v4
109109
with:
110110
name: 'components-artifact'
111111
path: storybook-static
@@ -158,7 +158,7 @@ jobs:
158158
const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`)
159159
buildComplexEnvVars(core, context)
160160
- name: 'download components build'
161-
uses: 'actions/download-artifact@v3'
161+
uses: 'actions/download-artifact@v4'
162162
with:
163163
name: components-artifact
164164
path: ./dist

.github/workflows/ll-test-build-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
run: |
165165
make -C labware-library
166166
- name: 'upload github artifact'
167-
uses: actions/upload-artifact@v3
167+
uses: actions/upload-artifact@v4
168168
with:
169169
name: 'll-artifact'
170170
path: labware-library/dist
@@ -197,7 +197,7 @@ jobs:
197197
const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`)
198198
buildComplexEnvVars(core, context)
199199
- name: 'download LL build'
200-
uses: 'actions/download-artifact@v3'
200+
uses: 'actions/download-artifact@v4'
201201
with:
202202
name: ll-artifact
203203
path: ./dist

.github/workflows/pd-test-build-deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
5959
sudo apt-get update && sudo apt-get install libudev-dev
6060
- name: 'cache yarn cache'
61-
uses: actions/cache@v2
61+
uses: actions/cache@v3
6262
with:
6363
path: |
6464
${{ github.workspace }}/.yarn-cache
@@ -164,7 +164,7 @@ jobs:
164164
run: |
165165
make -C protocol-designer NODE_ENV=development
166166
- name: 'upload github artifact'
167-
uses: actions/upload-artifact@v3
167+
uses: actions/upload-artifact@v4
168168
with:
169169
name: 'pd-artifact'
170170
path: protocol-designer/dist
@@ -197,7 +197,7 @@ jobs:
197197
const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`)
198198
buildComplexEnvVars(core, context)
199199
- name: 'download PD build'
200-
uses: 'actions/download-artifact@v3'
200+
uses: 'actions/download-artifact@v4'
201201
with:
202202
name: pd-artifact
203203
path: ./dist

0 commit comments

Comments
 (0)