Skip to content

Commit

Permalink
Updated CI to use v3 instead of v2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bjrichardwebster committed Jun 3, 2024
1 parent 66194f9 commit 27429a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
container: python:3.8
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
# Cache local python environment artifacts for the current python version
# and poetry lockfile hash.
- uses: actions/cache@v2
- uses: actions/cache@v3
id: env-cache
with:
# Confirmed that the `.local` directory doesn't exist until the
Expand All @@ -57,12 +57,12 @@ jobs:
container: python:3.8
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
# Cache local python environment artifacts for the current python version
# and poetry lockfile hash.
- uses: actions/cache@v2
- uses: actions/cache@v3
id: env-cache
with:
# Confirmed that the `.local` directory doesn't exist until the
Expand Down Expand Up @@ -96,12 +96,12 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
# Cache local python environment artifacts for the current python version
# and poetry lockfile hash.
- uses: actions/cache@v2
- uses: actions/cache@v3
id: env-cache
with:
# Confirmed that the `.local` directory doesn't exist until the
Expand Down

0 comments on commit 27429a4

Please sign in to comment.