Skip to content

Commit

Permalink
Bump workflow versions
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonWilde committed Sep 17, 2024
1 parent 09ecced commit 6e942f8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dynamic_badges.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Dynamic Badges
name: "Dynamic Badges"

on:
push:
Expand All @@ -13,15 +13,15 @@ jobs:

steps:
- name: Check-out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup python
id: setup-python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}
Expand All @@ -32,7 +32,7 @@ jobs:
run: poetry config virtualenvs.in-project true
- name: Load cached venv
id: cached-poetry-dependencies-2
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download cloc
run: sudo apt-get update -y && sudo apt-get install -y cloc
- name: Get the Numbers
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ruff.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run `ruff`
name: "Ruff"

on: [push, pull_request]

Expand All @@ -7,6 +7,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run ruff
uses: chartboost/ruff-action@v1
8 changes: 4 additions & 4 deletions .github/workflows/tox_pytest.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Tests
name: "Tox"

on: [push]

Expand All @@ -12,15 +12,15 @@ jobs:

steps:
- name: Check-out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup python
id: setup-python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}
Expand Down

0 comments on commit 6e942f8

Please sign in to comment.