Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Apr 14, 2024
1 parent 3eb5d5e commit a0d60ca
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand All @@ -28,7 +28,7 @@ jobs:

- name: Restore npm dependencies cache
id: npm-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules
key: ${{ runner.os }}-npm-cache-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -50,7 +50,7 @@ jobs:
run: npm run test

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: unit-tests-${{ matrix.os }}
fail_ci_if_error: true
Expand All @@ -68,11 +68,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore npm dependencies cache
id: npm-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules
key: ${{ runner.os }}-npm-cache-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -88,7 +88,7 @@ jobs:
path: ./build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
Expand All @@ -100,16 +100,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Bump version
id: version
uses: paulhatch/semantic-version@v5.0.2
uses: paulhatch/semantic-version@v5.4.0

- name: Create GitHub tag and release
uses: softprops/action-gh-release@v0.1.15
uses: softprops/action-gh-release@v2.0.4
with:
tag_name: ${{ steps.version.outputs.version_tag }}
generate_release_notes: true
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,30 +26,30 @@
]
},
"dependencies": {
"node-sass": "^8.0.0",
"node-sass": "^9.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-scripts": "5.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^14.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint-config-prettier": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^5.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gh-pages": "^6.0.0",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.6.1",
"stylelint": "^15.0.0",
"stylelint-config-standard": "^30.0.0",
"prettier": "^3.0.0",
"stylelint": "^16.0.0",
"stylelint-config-standard": "^36.0.0",
"ts-jest": "^29.0.0",
"typescript": "^4.6.3"
"typescript": "^5.0.0"
}
}

0 comments on commit a0d60ca

Please sign in to comment.