From a2fb03197a1fb119c16dc1980639587f8de92671 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Sun, 23 Aug 2026 16:43:44 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20Branch-Name-Anpassung=20und=20Tool-Versi?= =?UTF-8?q?on-Update=20in=20CI/CD-Workflows=20Aktualisiere=20Branch-Name?= =?UTF-8?q?=20von=20`dev`=20zu=20`testing`=20und=20erh=C3=B6he=20`actions/?= =?UTF-8?q?checkout`-Version=20auf=20v7=20mit=20Cache-Deaktivierung=20in?= =?UTF-8?q?=20beiden=20Workflows.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/dev.yml | 3 ++- .gitea/workflows/main.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/dev.yml b/.gitea/workflows/dev.yml index 769a0df..c31dd00 100644 --- a/.gitea/workflows/dev.yml +++ b/.gitea/workflows/dev.yml @@ -3,7 +3,7 @@ name: Dev Build, Publish & Preview Release on: push: branches: - - dev + - testing jobs: build-and-publish: @@ -17,6 +17,7 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable + cache: false - name: Install Packaging Tools run: | diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index 9f24c2d..5ceca60 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -11,12 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install Rust Toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable + cache: false - name: Install Packaging Tools run: |