This is an automated email from the ASF dual-hosted git repository. szaszm pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit a2d703b86e85cd0e48b44f077825971bf479632a Author: Gabor Gyimesi <[email protected]> AuthorDate: Tue Dec 6 17:20:25 2022 +0100 MINIFICPP-1986 Upgrade action versions Upgrade actions to avoid Node.js 12 deprecation warnings Closes #1467 Signed-off-by: Marton Szasz <[email protected]> --- .github/workflows/ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ecbd4aff..809e65b1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,9 +10,9 @@ jobs: CCACHE_DIR: ${{ GITHUB.WORKSPACE }}/.ccache steps: - id: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - id: cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ env.CCACHE_DIR }} key: macos-xcode-ccache-${{github.ref}}-${{github.sha}} @@ -49,9 +49,9 @@ jobs: - name: Support longpaths run: git config --system core.longpaths true - id: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up MSBuild - uses: microsoft/[email protected] + uses: microsoft/[email protected] - name: Set up Python uses: actions/setup-python@v4 with: @@ -81,9 +81,9 @@ jobs: timeout-minutes: 120 steps: - id: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - id: cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: ubuntu-20.04-ccache-${{github.ref}}-${{github.sha}} @@ -113,9 +113,9 @@ jobs: timeout-minutes: 180 steps: - id: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - id: cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: ubuntu-20.04-all-clang-ccache-${{github.ref}}-${{github.sha}} @@ -156,7 +156,7 @@ jobs: - id: flake8_check run: cd build && make flake8 - id: files - uses: Ana06/[email protected] + uses: Ana06/[email protected] continue-on-error: true - name: clang-tidy run: | @@ -178,9 +178,9 @@ jobs: timeout-minutes: 180 steps: - id: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - id: cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: centos-ccache-${{github.ref}}-${{github.sha}} @@ -208,9 +208,9 @@ jobs: timeout-minutes: 180 steps: - id: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - id: cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: docker-ccache-${{github.ref}}-${{github.sha}}
