Skip to content

Commit

Permalink
Update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 23, 2024
1 parent 518b7a1 commit 4a10add
Show file tree
Hide file tree
Showing 4 changed files with 5,352 additions and 6,140 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Expand Up @@ -18,20 +18,20 @@ jobs:
echo "::set-output name=tag::$tag"
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_TOKEN }}

- name: Build and Push Backend Docker Image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ./portfolio_backend
push: true
Expand All @@ -40,7 +40,7 @@ jobs:
ghcr.io/den4200/portfolio_backend:${{ steps.sha_tag.outputs.tag }}
- name: Build and Push Frontend Docker Image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ./portfolio_frontend
push: true
Expand Down
8 changes: 4 additions & 4 deletions portfolio_backend/Cargo.toml
Expand Up @@ -9,19 +9,19 @@ edition = "2018"
[dependencies]
bcrypt = "0.9.0"
chrono = { version = "0.4", features = ["serde"] }
diesel = { version = "1.4.6", features = ["chrono", "postgres"] }
diesel_migrations = { version = "1.4.0", features = ["postgres"] }
diesel = { version = "2.1.4", features = ["chrono", "postgres"] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
dotenv = "0.15"
futures = "0.3"
hubcaps = "0.6"
jsonwebtoken = "7.2.0"
jsonwebtoken = "9.2.0"
lazy_static = "1.4.0"
rocket = { version = "0.4.7", default-features = false }
rocket_cors = { version = "0.5.2", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = "0.2.25"
uuid = { version = "0.8", features = ["v4"] }
uuid = { version = "1.7", features = ["v4"] }

[dependencies.rocket_contrib]
version = "0.4.7"
Expand Down
40 changes: 20 additions & 20 deletions portfolio_frontend/package.json
Expand Up @@ -3,36 +3,36 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/fontawesome-svg-core": "^6.0.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.14",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^13.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router": "^5.1.9",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^5.1.7",
"@types/react-scroll": "^1.8.2",
"axios": "^0.21.2",
"bootstrap": "^4.5.3",
"bootstrap": "^5.0.0",
"github-contributions-canvas": "^0.6.0",
"immutable": "^4.0.0-rc.12",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react": "^18.0.0",
"react-bootstrap": "^2.0.0",
"react-dom": "^18.0.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-router-dom": "^6.0.0",
"react-scripts": "5.0.1",
"react-scroll": "^1.8.1",
"react-typed": "^1.2.0",
"react-typed": "^2.0.0",
"react-use-event-hook": "^0.9.6",
"typescript": "^4.0.3",
"web-vitals": "^1.0.0"
"typescript": "^5.0.0",
"web-vitals": "^3.0.0"
},
"scripts": {
"start": "postcss src/styles/tailwind.css -o src/styles/index.css --watch & react-scripts --openssl-legacy-provider start",
Expand Down Expand Up @@ -62,7 +62,7 @@
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"postcss": "^8.4.27",
"postcss-cli": "^10.1.0",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^9.1.0",
"tailwindcss": "^3.3.3"
}
Expand Down

0 comments on commit 4a10add

Please sign in to comment.