From 925f1ce51e69c06ce96d97388c5edcd7d1fabc76 Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Sun, 19 Jul 2020 23:22:24 -0700 Subject: [PATCH] GitHub Actions workflows - use latest version of actions/checkout (#7534) (cherry picked from commit c7644eda713044545a135061e4863c2238ebd244) --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/daily.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 730eaf0dd..4d6c1c14c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: test-ubuntu-latest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: make - name: test @@ -20,21 +20,21 @@ jobs: build-ubuntu-old: runs-on: ubuntu-16.04 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: make build-macos-latest: runs-on: macos-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: make build-32bit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: | sudo apt-get update && sudo apt-get install libc6-dev-i386 @@ -43,7 +43,7 @@ jobs: build-libc-malloc: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: make MALLOC=libc diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 5614aad1e..5b5f3f7d4 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 14400 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: make - name: test @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 14400 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: make MALLOC=libc - name: test @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 14400 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: | sudo apt-get update && sudo apt-get install libc6-dev-i386 @@ -72,7 +72,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 14400 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: | make BUILD_TLS=yes @@ -92,7 +92,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 14400 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: make run: make valgrind - name: test