From 434de9923316729b1ddaeeffca28b24cd1f4ba4d Mon Sep 17 00:00:00 2001 From: Christian Blichmann Date: Tue, 16 May 2023 04:03:17 -0700 Subject: [PATCH] GitHub Workflows: Update to `actions/checkout@v3` This avoids Node.js deprecation warnings during the build. PiperOrigin-RevId: 532406855 Change-Id: I0577051565432ed885034ac70e09be58777537cd --- .github/workflows/fedora-cmake.yml | 2 +- .github/workflows/ubuntu-cmake-contrib.yml | 2 +- .github/workflows/ubuntu-cmake.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fedora-cmake.yml b/.github/workflows/fedora-cmake.yml index 2daf751..8909dab 100644 --- a/.github/workflows/fedora-cmake.yml +++ b/.github/workflows/fedora-cmake.yml @@ -22,7 +22,7 @@ jobs: RUN_CMD: docker exec --tty ${{matrix.compiler}}-build-container steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache dependencies uses: actions/cache@v3 diff --git a/.github/workflows/ubuntu-cmake-contrib.yml b/.github/workflows/ubuntu-cmake-contrib.yml index 67d00cb..43b0f16 100644 --- a/.github/workflows/ubuntu-cmake-contrib.yml +++ b/.github/workflows/ubuntu-cmake-contrib.yml @@ -32,7 +32,7 @@ jobs: continue-on-error: ${{ matrix.ignore-errors }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache dependencies uses: actions/cache@v3 diff --git a/.github/workflows/ubuntu-cmake.yml b/.github/workflows/ubuntu-cmake.yml index 820b4cb..8cd4700 100644 --- a/.github/workflows/ubuntu-cmake.yml +++ b/.github/workflows/ubuntu-cmake.yml @@ -50,7 +50,7 @@ jobs: continue-on-error: ${{ matrix.ignore-errors }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache dependencies uses: actions/cache@v3