From 0fc70de4465283c87b17d0b331670f6f1422ddda Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Wed, 13 Mar 2024 16:29:50 -0400 Subject: [PATCH] chore: update versions of GitHub Actions (#227) --- .github/actions/nix-shell/action.yml | 4 ++-- .github/workflows/ci.yml | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/actions/nix-shell/action.yml b/.github/actions/nix-shell/action.yml index 18bbbe7..6827659 100644 --- a/.github/actions/nix-shell/action.yml +++ b/.github/actions/nix-shell/action.yml @@ -10,10 +10,10 @@ inputs: runs: using: "composite" steps: - - uses: cachix/install-nix-action@v20 + - uses: cachix/install-nix-action@v26 with: nix_path: nixpkgs=channel:nixos-unstable - - uses: cachix/cachix-action@v12 + - uses: cachix/cachix-action@v14 with: name: pyramid-openapi3 authToken: '${{ inputs.cachix_auth_token }}' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 874ed30..347de91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./.github/actions/nix-shell with: cachix_auth_token: '${{ secrets.CACHIX_AUTH_TOKEN }}' @@ -58,10 +58,10 @@ jobs: nix-shell --run "python -m unittest tests.py" - name: Save coverage report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: htmlcov - path: htmlcov + path: htmlcov/ test_39: name: "Python 3.9 Tests" @@ -69,7 +69,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./.github/actions/nix-shell with: cachix_auth_token: '${{ secrets.CACHIX_AUTH_TOKEN }}' @@ -94,10 +94,10 @@ jobs: nix-shell --run "python3.9 -m unittest tests.py" - name: Save coverage report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: htmlcov - path: htmlcov + name: htmlcov-py39 + path: htmlcov/ release: