Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
test: ${{ steps.filter.outputs.test }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dorny/paths-filter@v3
id: filter
with:
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/python-init
- name: Run commit hooks
run: uv run prek run --all-files --hook-stage manual
Expand All @@ -44,7 +44,7 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: ./.github/actions/python-init
- name: Run tests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/python-init

- name: Build MkDocs site
Expand Down Expand Up @@ -76,14 +76,14 @@ jobs:
steps:
- name: Check out release tag
if: github.event_name == 'release'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.event.release.tag_name }}

- name: Check out branch
if: github.event_name == 'push'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -104,7 +104,7 @@ jobs:
DISPATCH_REF: ${{ github.event.inputs.ref }}
- name: Check out dispatch ref
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ steps.dispatch-ref.outputs.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: ./.github/actions/python-init
Expand All @@ -41,7 +41,7 @@ jobs:
url: https://pypi.org/p/python-usajobsapi

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
Loading