From 975c1b265e11dd76618af1c374e7981f9a6ff44a Mon Sep 17 00:00:00 2001 From: Andreas Deininger Date: Fri, 23 Feb 2024 21:17:15 +0100 Subject: [PATCH] Bump checkout action to latest version (#401) --- .github/workflows/main.yml | 2 +- README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a3936e6..656167a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: steps: # https://github.com/actions/checkout - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install run: npm ci - name: Build diff --git a/README.md b/README.md index 98e64cc..c840b93 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') @@ -62,7 +62,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Release uses: softprops/action-gh-release@v1 ``` @@ -88,7 +88,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: echo ${{ github.sha }} > Release.txt - name: Test @@ -112,7 +112,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: echo ${{ github.sha }} > Release.txt - name: Test @@ -146,7 +146,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Generate Changelog run: echo "# Good things have arrived" > ${{ github.workspace }}-CHANGELOG.txt - name: Release