Skip to content

Commit

Permalink
chore: bump GH actions to use NodeJS 20 (#1092)
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksii Kurinnyi <okurinny@redhat.com>
  • Loading branch information
akurinnoy authored Apr 11, 2024
1 parent be2e6d4 commit 858d4de
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0
-
name: "Use Node.js"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x
-
Expand All @@ -40,6 +40,6 @@ jobs:
run: yarn test:coverage
-
name: "Build Codecov report"
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./packages/dashboard-frontend/coverage/lcov.info,./packages/dashboard-backend/coverage/lcov.info,./packages/common/coverage/lcov.info
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v4
-
name: "Use Node 18"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
-
Expand All @@ -51,7 +51,7 @@ jobs:
uses: actions/checkout@v4
-
name: "Use Node.js ${{ matrix.node-version }}"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
-
Expand All @@ -72,7 +72,7 @@ jobs:
uses: actions/checkout@v4
-
name: "Use Node.js ${{ matrix.node-version }}"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
-
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: "Cache Docker layers"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand All @@ -142,7 +142,7 @@ jobs:
tags: ${{ env.ORGANIZATION }}/che-dashboard:${{ env.IMAGE_VERSION }}
-
name: "Comment with image name"
uses: actions/github-script@v6
uses: actions/github-script@v7
if: ${{ matrix.default == true }}
with:
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v4
-
name: "Setup Node"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
-
Expand Down

0 comments on commit 858d4de

Please sign in to comment.