From 0ed6cf0d969db47321c692533bfc7545d75eba77 Mon Sep 17 00:00:00 2001 From: zer0Kerbal <39887717+zer0Kerbal@users.noreply.github.com> Date: Sun, 8 May 2022 15:32:55 -0500 Subject: [PATCH 1/2] Update README.md update from `actions/checkout@v2` to `actions/checkout@v3` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b31dd87..c4fcc6d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 1 - name: Validate config files From 9670b5508e0dea96f90fdbe8476e04fb1054d617 Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Sun, 8 May 2022 20:49:12 +0000 Subject: [PATCH 2/2] Update the repo's workflows too --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ef54ea..2666bad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: container: mono:latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Restore cache for ~/.nuget/packages uses: actions/cache@v1 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 131910a..2d0a8c6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Installing build dependencies run: apt-get update && apt-get install -y wget jq - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Restore, build, and test run: msbuild -r -p:configuration=Release - name: Smoke test the validator outside the build dir