From 3ca1a420b9b80b4aa3c3c07c332f252c904dbd7f Mon Sep 17 00:00:00 2001 From: Brandon Stoll Date: Mon, 10 Jun 2024 17:00:41 +0000 Subject: [PATCH] Use actions/checkout@v4 for wiki generation --- .github/workflows/wiki.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml index 08ec3d63fc6..5020a13db0c 100644 --- a/.github/workflows/wiki.yml +++ b/.github/workflows/wiki.yml @@ -2,20 +2,21 @@ name: Update Wiki on: push: - branches: [ main ] + branches: + - '**' jobs: update-wiki: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3.0.0 with: path: featureprofiles - name: Checkout wiki - uses: actions/checkout@v2 + uses: actions/checkout@v3.0.0 with: - repository: "openconfig/featureprofiles.wiki" + repository: "bstoll/featureprofiles.wiki" path: featureprofiles.wiki - name: Set up Go uses: actions/setup-go@v2.1.3