From 0bc68058282963c85b2e3277eb762938bb44f17f Mon Sep 17 00:00:00 2001 From: deadprogram Date: Sat, 11 Feb 2023 22:50:31 +0100 Subject: [PATCH] build: update to actions/checkout@v3 Signed-off-by: deadprogram --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d598fc1..d3b68b0 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -14,7 +14,7 @@ jobs: container: tinygo/tinygo-dev steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: TinyGo version check run: tinygo version - name: Run unit tests diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 8a48874..2983a78 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -21,7 +21,7 @@ jobs: with: go-version: '1.18.3' - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run unit tests run: go test - name: "Run macOS smoke tests"