diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6c32dd..7e190c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: run: ./gradlew test - name: Upload build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: plugin-artifact path: build/distributions/*.zip @@ -47,7 +47,7 @@ jobs: if: success() || failure() # Générer les rapports même en cas d'échec des tests - name: Archive test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-results path: build/reports/tests/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35ec0ac..3b2a4c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: run: ./gradlew runPluginVerifier - name: Upload plugin artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: api-generator-plugin path: build/distributions/*.zip