Skip to content

Commit

Permalink
Update github actions to use newer runners
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchrisadams committed Sep 21, 2023
1 parent d30b54b commit 767214f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use turnstyle to serialise deploys
uses: softprops/turnstyle@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use turnstyle to serialise deploys
uses: softprops/turnstyle@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
python-version: [3.8]

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

- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -53,7 +53,7 @@ jobs:
- name: Set up a cache-key for installations of dependencies, in .venv
id: cache-pipenv
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ./.venv
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
Expand Down

0 comments on commit 767214f

Please sign in to comment.