From 3e405dc154fc091b793ed91da0593a4fb7f90cff Mon Sep 17 00:00:00 2001 From: Yehor Popovych Date: Sat, 4 May 2024 19:41:30 +0100 Subject: [PATCH] CI action versions update --- .github/workflows/ci-workflow.yml | 22 +++++++++++----------- .github/workflows/lint-workflow.yml | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 0e49fa7d..0a3c970a 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: | @@ -29,7 +29,7 @@ jobs: make BOLOS_SDK=${{ matrix.SDK }} DEBUG=1 - name: Upload app binary - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.artifact }} path: bin @@ -43,7 +43,7 @@ jobs: steps: - name: Clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build unit tests run: | @@ -64,14 +64,14 @@ jobs: lcov --directory . -b "$(realpath build/)" --remove coverage.info '*/unit-tests/*' -o coverage.info && \ genhtml coverage.info -o coverage - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: code-coverage path: unit-tests/coverage - name: Upload to codecov.io if: false - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./unit-tests/coverage.info @@ -89,12 +89,12 @@ jobs: steps: - name: Clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: HTML documentation run: doxygen .doxygen/Doxyfile - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: documentation path: doc/html @@ -108,7 +108,7 @@ jobs: steps: - name: Clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build with Clang Static Analyzer run: | @@ -116,7 +116,7 @@ jobs: scan-build --use-cc=clang -analyze-headers -enable-checker security -enable-checker unix -enable-checker valist -o scan-build --status-bugs make default - name: Upload scan result - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: scan-build @@ -147,10 +147,10 @@ jobs: steps: - name: Clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download app binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ergo-app-debug-${{matrix.model}} path: bin diff --git a/.github/workflows/lint-workflow.yml b/.github/workflows/lint-workflow.yml index 91f0313c..e6133700 100644 --- a/.github/workflows/lint-workflow.yml +++ b/.github/workflows/lint-workflow.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Lint uses: DoozyX/clang-format-lint-action@v0.12 @@ -24,7 +24,7 @@ jobs: steps: - name: Clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0