Merge pull request #1760 from makeplane/sync/ce-ee

Sync: Community Changes
This commit is contained in:
sriram veeraghanta
2024-11-16 19:50:34 +05:30
committed by GitHub
10 changed files with 1546 additions and 1698 deletions

View File

@@ -16,9 +16,13 @@ updates:
patterns:
- "turbo"
- "@turbo/*"
allow:
- dependency-type: "all"
security-updates-only: true
# Web App
- package-ecosystem: "npm"
security-updates-only: true
directory: "/web"
schedule:
interval: "weekly"
@@ -37,6 +41,7 @@ updates:
# Admin App
- package-ecosystem: "npm"
security-updates-only: true
directory: "/admin"
schedule:
interval: "weekly"
@@ -55,6 +60,7 @@ updates:
# Sites App
- package-ecosystem: "npm"
security-updates-only: true
directory: "/space"
schedule:
interval: "weekly"
@@ -73,7 +79,8 @@ updates:
# Live Server
- package-ecosystem: "npm"
directory: "/live" # Adjust path for your Node.js app
security-updates-only: true
directory: "/live"
schedule:
interval: "weekly"
labels:
@@ -83,7 +90,8 @@ updates:
# Python service
- package-ecosystem: "pip"
directory: "/apiserver" # Adjust path for your Python app
security-updates-only: true
directory: "/apiserver"
schedule:
interval: "weekly"
labels:
@@ -93,6 +101,7 @@ updates:
# Go service
- package-ecosystem: "gomod"
security-updates-only: true
directory: "/monitor" # Adjust path for your Go app
schedule:
interval: "weekly"
@@ -112,6 +121,7 @@ updates:
# Docker dependencies
- package-ecosystem: "docker"
security-updates-only: true
directory: "/"
schedule:
interval: "weekly"

View File

@@ -83,7 +83,7 @@ jobs:
endpoint: ${{ env.BUILDX_ENDPOINT }}
- name: Build and Push to Docker Hub
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6.9.0
with:
context: ./aio
file: ./aio/Dockerfile-base-full
@@ -124,7 +124,7 @@ jobs:
endpoint: ${{ env.BUILDX_ENDPOINT }}
- name: Build and Push to Docker Hub
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6.9.0
with:
context: ./aio
file: ./aio/Dockerfile-base-slim

View File

@@ -128,7 +128,7 @@ jobs:
uses: actions/checkout@v4
- name: Build and Push to Docker Hub
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6.9.0
with:
context: .
file: ./aio/Dockerfile-app
@@ -188,7 +188,7 @@ jobs:
uses: actions/checkout@v4
- name: Build and Push to Docker Hub
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6.9.0
with:
context: .
file: ./aio/Dockerfile-app

View File

@@ -367,7 +367,7 @@ jobs:
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2.0.8
uses: softprops/action-gh-release@v2.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:

View File

@@ -29,11 +29,11 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -46,7 +46,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3
# Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -59,6 +59,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

View File

@@ -79,7 +79,7 @@ jobs:
uses: actions/checkout@v4
- name: Build and Push to Docker Hub
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v6.9.0
with:
context: .
file: ./aio/Dockerfile-app

View File

@@ -22,7 +22,7 @@ jobs:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all branches and tags

View File

@@ -18,7 +18,7 @@ jobs:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0

View File

@@ -25,7 +25,7 @@
"devDependencies": {
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.5.4",
"turbo": "^2.1.1"
"turbo": "^2.3.0"
},
"packageManager": "yarn@1.22.22"
}

3204
yarn.lock

File diff suppressed because it is too large Load Diff