From d3408ef6f0add78d8c1634e13c05af35281a4a20 Mon Sep 17 00:00:00 2001 From: Tobias Neitzel Date: Fri, 19 Jul 2024 11:25:50 +0200 Subject: [PATCH] Update workflow action versions --- .github/workflows/build-offline-frontend.yml | 12 +++++------ .github/workflows/build.yml | 22 ++++++++++---------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build-offline-frontend.yml b/.github/workflows/build-offline-frontend.yml index 9d0d586..1a9f656 100644 --- a/.github/workflows/build-offline-frontend.yml +++ b/.github/workflows/build-offline-frontend.yml @@ -23,13 +23,13 @@ jobs: steps: - name: Checkout ${{ github.event.repository.name }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '20.x' @@ -41,13 +41,13 @@ jobs: npm run build -- --mode offline - name: Archive offline frontend - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rpv-web-offline path: 'frontend/dist' - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 with: path: 'frontend/dist' @@ -63,4 +63,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 733fe46..522cc23 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout ${{ github.event.repository.name }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install V - uses: vlang/setup-v@v1.3 + uses: vlang/setup-v@v1.4 - name: Install mingw run: | @@ -33,7 +33,7 @@ jobs: make - name: Archive rpv-web-x64 - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rpv-web-x64 path: rpv-web-x64.exe @@ -43,10 +43,10 @@ jobs: steps: - name: Checkout ${{ github.event.repository.name }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install V - uses: vlang/setup-v@v1.3 + uses: vlang/setup-v@v1.4 - name: Install mingw run: | @@ -59,7 +59,7 @@ jobs: make rpv-web-x86 - name: Archive rpv-web-x86 - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rpv-web-x86 path: rpv-web-x86.exe @@ -72,10 +72,10 @@ jobs: steps: - name: Checkout ${{ github.event.repository.name }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '20.x' @@ -87,17 +87,17 @@ jobs: mv dist ../dist - name: Download rpv-web-x64 - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: rpv-web-x64 - name: Download rpv-web-x86 - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: rpv-web-x86 - name: Archive frontend and rpv-web - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rpv-web path: |