Skip to content

Commit

Permalink
chore: update versions of GitHub Actions (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
miketheman authored Mar 13, 2024
1 parent a79d9c2 commit 0fc70de
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/actions/nix-shell/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}'
Expand All @@ -58,18 +58,18 @@ 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"

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 }}'
Expand All @@ -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:
Expand Down

0 comments on commit 0fc70de

Please sign in to comment.