From 1a630ddaeea2f8823d82926f789f81059148d1b9 Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Sat, 4 Jul 2026 16:41:37 +0000 Subject: [PATCH] use native Gitea workspace (no checkout action) --- .gitea/workflows/ci.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 14435a9..fa7ccd7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,13 +10,6 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.11" - - name: Install dependencies run: | python -m pip install --upgrade pip @@ -32,13 +25,6 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.11" - - name: Install dependencies run: | python -m pip install --upgrade pip @@ -51,8 +37,6 @@ jobs: docker-build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Build Docker image run: | docker build -t youtube-cli:test --no-cache . @@ -60,13 +44,6 @@ jobs: security: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.11" - - name: Run bandit (Python SAST) run: | pip install bandit