Skip to content

Commit

Permalink
upgrade container version to node: 18 to avoid error actions/runner-i…
Browse files Browse the repository at this point in the history
  • Loading branch information
siarheiy committed Jul 18, 2023
1 parent 31eb4db commit 057921a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'

- uses: actions/cache@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
# No need to run this job on "pull_request" from main UUI repo, because it's guaranteed it's already run on "push" event.
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'epam/UUI' || github.event_name == 'push'
runs-on: ubuntu-latest
container: node:16
container: node:18

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'

- uses: actions/cache@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/trackBundleSize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ concurrency:
jobs:
track-bundle-size:
runs-on: ubuntu-latest
container: node:16
container: node:18
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
path: source-branch

- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'

- uses: actions/cache@v2
with:
Expand Down

0 comments on commit 057921a

Please sign in to comment.