Skip to content

Commit 2f87af2

Browse files
committed
Updating actions
1 parent 26a9063 commit 2f87af2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
matrix:
3939
node-version: [14.x]
4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v4
4242
- name: Use Node.js ${{ matrix.node-version }}
43-
uses: actions/setup-node@v2
43+
uses: actions/setup-node@v4
4444
with:
4545
node-version: ${{ matrix.node-version }}
4646

@@ -49,7 +49,7 @@ jobs:
4949
run: echo "::set-output name=dir::$(yarn cache dir)"
5050

5151
- name: Use Yarn cache
52-
uses: actions/cache@v2
52+
uses: actions/cache@v4
5353
id: yarn-cache
5454
with:
5555
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -61,7 +61,7 @@ jobs:
6161
- name: Build (webpack)
6262
run: CI=false; yarn build
6363

64-
- uses: actions/upload-artifact@v2
64+
- uses: actions/upload-artifact@v4
6565
with:
6666
name: nextjs-build
6767
path: ./build/
@@ -73,9 +73,9 @@ jobs:
7373
runs-on: ubuntu-latest
7474
if: github.event_name == 'push'
7575
steps:
76-
- uses: actions/checkout@v2
76+
- uses: actions/checkout@v4
7777

78-
- uses: actions/download-artifact@v2
78+
- uses: actions/download-artifact@v4
7979
with:
8080
name: nextjs-build
8181
path: build/

0 commit comments

Comments
 (0)