From 2369304d91d958f9d8a7a0801d3bdd8da0dacece Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Wed, 6 Sep 2023 09:53:02 +0000 Subject: [PATCH] - update GitHub actions dependencies - update README for v4 --- .github/workflows/build.yml | 4 ++-- README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c33282a5..aaaf3457 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -73,14 +73,14 @@ jobs: - name: "Build Changelog" id: github_release - uses: mikepenz/release-changelog-builder-action@v3 + uses: mikepenz/release-changelog-builder-action@v4 with: configuration: ".github/config/configuration.json" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create Release - uses: softprops/action-gh-release@6034af24fba4e5a8e975aaa6056554efe4c794d0 + uses: mikepenz/action-gh-release@v1 with: body: ${{steps.github_release.outputs.changelog}} prerelease: ${{ contains(github.ref, '-rc') || contains(github.ref, '-b') || contains(github.ref, '-a') }} diff --git a/README.md b/README.md index f04c1463..d285fae4 100644 --- a/README.md +++ b/README.md @@ -59,11 +59,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Build and Run Tests run: # execute your tests generating test results - name: Publish Test Report - uses: mikepenz/action-junit-report@v3 + uses: mikepenz/action-junit-report@v4 if: success() || failure() # always run even if the previous step fails with: report_paths: '**/build/test-results/test/TEST-*.xml' @@ -121,7 +121,7 @@ you can increase the memory allocation by setting an environment variable ```yaml - name: Publish Test Report - uses: mikepenz/action-junit-report@v3 + uses: mikepenz/action-junit-report@v4 env: NODE_OPTIONS: "--max_old_space_size=4096" if: success() || failure() # always run even if the previous step fails