From 7574f1b699c70e28588d17df38a5c185c6283bb1 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Wed, 13 Nov 2024 17:44:41 +0000 Subject: [PATCH] Update the Github checkout and setup-dotnet actions from v3 to v4 --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2aca02..2bd086c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 - name: Build run: dotnet fsi build.fsx diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bac6113..c6637a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,10 +16,10 @@ jobs: echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v} shell: bash - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 - name: Run Release Build run: dotnet fsi build.fsx -p ReleaseBuild