🚀 Dependency Update and Vulnerability Scan #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🚀 Dependency Update and Vulnerability Scan | |
on: | |
schedule: | |
- cron: '0 2 * * *' # Runs daily at 2 AM UTC | |
workflow_dispatch: # Allows manual triggering | |
push: | |
branches: | |
- master | |
jobs: | |
update-and-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛠️ Checkout code | |
uses: actions/checkout@v4 | |
- name: 🔧 Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
# Frontend Updates | |
- name: 🗑️ Remove package-lock.json (Frontend) | |
run: rm -f frontend/package-lock.json | |
- name: 📦 Install npm-check-updates (Frontend) | |
run: npm install -g npm-check-updates | |
- name: ⬆️ Update all packages in frontend | |
run: | | |
cd frontend | |
ncu -u # Update package.json with the latest versions | |
npm install --legacy-peer-deps # Install dependencies with legacy peer deps handling | |
# Backend Updates | |
- name: 🗑️ Remove package-lock.json (Backend) | |
run: rm -f backend/package-lock.json | |
- name: 📦 Install npm-check-updates (Backend) | |
run: npm install -g npm-check-updates | |
- name: ⬆️ Update all packages in backend | |
run: | | |
cd backend | |
ncu -u # Update package.json with the latest versions | |
npm install --legacy-peer-deps # Install dependencies with legacy peer deps handling | |
# Debricked Setup and Scan | |
- name: 🎭 Mask Debricked credentials | |
run: echo "::add-mask::${{ secrets.DEBRICKED_TOKEN }}" | |
- name: Install Debricked CLI | |
run: | | |
curl -L https://github.com/debricked/cli/releases/latest/download/cli_linux_x86_64.tar.gz | tar -xz debricked | |
sudo mv debricked /usr/local/bin/debricked | |
- name: 🛡️ Debricked Vulnerability Scan | |
run: | | |
debricked scan -t ${{ secrets.DEBRICKED_TOKEN }} -r ${{ github.repository }} -c ${{ github.sha }} | |
# Commit and Push Changes if Updates Were Made | |
- name: 📝 Commit changes | |
if: success() | |
run: | | |
git config --local user.name "Debugging Duck 🦆" | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git add frontend/package.json frontend/package-lock.json backend/package.json backend/package-lock.json | |
git diff-index --quiet HEAD || git commit -m "⬆️ update all npm dependencies ⬆️" | |
- name: 🚀 Push changes | |
if: success() | |
run: git push |