From 431bbd304bde0ad4d06bbc7a63122f41cc58d108 Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Mon, 11 Sep 2023 10:57:28 -0400 Subject: [PATCH] Update readme for removal of 'actions-workspace' Signed-off-by: Daniel F. Dickinson --- README.fr.md | 5 +---- README.md | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/README.fr.md b/README.fr.md index eec14b5..2422496 100644 --- a/README.fr.md +++ b/README.fr.md @@ -52,6 +52,7 @@ jobs: build-unminified-site: runs-on: ubuntu-20.04 steps: + - uses: actions/checkout@v4 - name: "Créer site avec Hugo et auditer" uses: wildtechgarden/audit-build-action-hugo-dfd@main with: @@ -59,13 +60,9 @@ jobs: build-for-downstream: "true" source-directory: échantillon use-lfs: false - - uses: actions/checkout@v3 - with: - path: validate-html-action - name: "Vérifier HTML de site" uses: wildtechgarden/validator-html-action@main with: - action-workspace: ${{ github.workspace }}/validate-html-action use-existing-workspace: "true" ``` diff --git a/README.md b/README.md index 3bad605..254773c 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ jobs: build-unminified-site: runs-on: ubuntu-20.04 steps: + - uses: actions/checkout@v4 - name: "Build site with Hugo and audit" uses: wildtechgarden/audit-build-action-hugo-dfd@main with: @@ -60,13 +61,9 @@ jobs: build-for-downstream: "true" source-directory: exampleSite use-lfs: false - - uses: actions/checkout@v3 - with: - path: validate-html-action - name: "Validate HTML of statically generated website" uses: wildtechgarden/validator-html-action@main with: - action-workspace: ${{ github.workspace }}/validate-html-action use-existing-workspace: "true" ```