From 3541024573c01cd0f2dcdcc4a3aa74e9b42b7da9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Fri, 4 Nov 2022 23:21:32 +0100 Subject: [PATCH] build: bump actions/checkout to v3 #348 --- .github/workflows/build.yaml | 2 +- .github/workflows/deploy.yaml | 2 +- .github/workflows/release.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fd9ce5cb0c..178c52d44a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -12,7 +12,7 @@ jobs: if: github.event_name != 'push' || (github.event_name == 'push' && github.ref != 'refs/heads/main') steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true # Fetch Hugo themes (true OR recursive) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 2434748434..942363d8ac 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -11,7 +11,7 @@ jobs: if: github.event_name != 'push' || (github.event_name == 'push' && github.ref == 'refs/heads/main') steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1d32b597c2..a7d7b6a8fb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod