From fd117da16af6894f3078e684292be4da114839b8 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 11 Nov 2022 15:17:21 +0100 Subject: [PATCH] build: update some actions to remove warnings --- .github/workflows/ci.yml | 14 +++++++------- .github/workflows/coverity.yml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fbf9f894..46c822f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - compiler: clang config-args: "--with-snmp --with-xml" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Unshallow repository @@ -52,14 +52,14 @@ jobs: if: matrix.release run: cd build && ../tests/ci/release.sh > ../release.md - name: Upload release tarball - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: matrix.release with: name: tarball path: build/lldpd-*.tar.gz if-no-files-found: error - name: Upload release summary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: matrix.release with: name: release @@ -82,7 +82,7 @@ jobs: --without-xml release: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Install stuff @@ -93,7 +93,7 @@ jobs: LLDPD_CONFIG_ARGS: ${{ matrix.config-args }} CC: clang - name: Upload MacOS release package - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: matrix.release with: name: package @@ -114,7 +114,7 @@ jobs: runner: macos-latest runs-on: ${{ matrix.os.runner }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Test on ${{ matrix.os.name }} @@ -138,7 +138,7 @@ jobs: name: Build Docker images if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: docker/setup-qemu-action@v1 - uses: docker/setup-buildx-action@v1 - uses: docker/metadata-action@v3 diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index c7002c7d..3918eeb7 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -12,7 +12,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Fetch latest Coverity Scan MD5 -- 2.39.5