From 8eeefad9ddf4c6196cdc821f4f84341f6afb50e0 Mon Sep 17 00:00:00 2001 From: Mikael Fangel <34864484+MikaelFangel@users.noreply.github.com> Date: Fri, 10 May 2024 23:32:27 +0200 Subject: [PATCH] build_documentation: update workflow actions --- .github/workflows/build_documentation.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index 266edd3f..83c8e473 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -31,15 +31,15 @@ jobs: uses: actions/checkout@v4 - name: Setup pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Install nix - uses: cachix/install-nix-action@v25 + uses: cachix/install-nix-action@v26 with: nix_path: nixpkgs=channel:nixos-unstable - name: Configure cachix - uses: cachix/cachix-action@v13 + uses: cachix/cachix-action@v14 with: name: nix-community authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' @@ -47,10 +47,10 @@ jobs: - run: nix build .#docs --show-trace - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 with: path: "result/share/doc" - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4