From 1c3ef135f024788d42e58323517b5c8e58c4e0c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Fri, 15 Mar 2024 22:03:10 +0100 Subject: [PATCH] build: update all available actions to nodejs 20 #802 --- .github/actions/release_milestone/action.yaml | 2 +- .github/workflows/docs-build-deployment.yaml | 2 +- .github/workflows/docs-build.yaml | 2 +- .github/workflows/version-release.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/release_milestone/action.yaml b/.github/actions/release_milestone/action.yaml index 77a185ff4b..e78d1ad26b 100644 --- a/.github/actions/release_milestone/action.yaml +++ b/.github/actions/release_milestone/action.yaml @@ -11,7 +11,7 @@ runs: using: composite steps: - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '16' diff --git a/.github/workflows/docs-build-deployment.yaml b/.github/workflows/docs-build-deployment.yaml index 296ccb02a0..9c30c87bd9 100644 --- a/.github/workflows/docs-build-deployment.yaml +++ b/.github/workflows/docs-build-deployment.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@v3 + uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) # fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - not necessary for this repo diff --git a/.github/workflows/docs-build.yaml b/.github/workflows/docs-build.yaml index cc74f35ec8..23d59fd93b 100644 --- a/.github/workflows/docs-build.yaml +++ b/.github/workflows/docs-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@v3 + uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) # fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - not necessary for this repo diff --git a/.github/workflows/version-release.yaml b/.github/workflows/version-release.yaml index 7e7929a9e8..af5fce8966 100644 --- a/.github/workflows/version-release.yaml +++ b/.github/workflows/version-release.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) # fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - not necessary for this repo