Skip to content

Commit

Permalink
Merge pull request #11 from Uninett/workflows/upgrade-github-actions
Browse files Browse the repository at this point in the history
Upgrade Github actions
  • Loading branch information
johannaengland authored Jun 18, 2024
2 parents b86a65e + 1bf4942 commit df5882d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/cache@v2
- uses: actions/cache@v4
id: cache
with:
path: ~/.cache/pip
Expand All @@ -28,7 +28,7 @@ jobs:
${{ runner.os }}-pip-
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -55,7 +55,7 @@ jobs:
python -m coverage xml
- name: "Upload to Codecov"
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Expand All @@ -65,8 +65,8 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "3.8"

Expand Down

0 comments on commit df5882d

Please sign in to comment.