Skip to content

Commit

Permalink
Merge pull request #876 from sphinx-contrib/bump-ci-action-versions
Browse files Browse the repository at this point in the history
.github: bump various ci action versions
  • Loading branch information
jdknight authored Feb 18, 2024
2 parents f1b992e + 1125a4b commit 230939b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs:
- { os: ubuntu-latest, python: "3.12", toxenv: pylint, cache: ~/.cache/pip }

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

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-pip
with:
path: ${{ matrix.cache }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
runs-on: ubuntu-latest

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

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sphinx-dev-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
runs-on: ubuntu-latest

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

- name: Set up Python ${{ github.event.inputs.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ github.event.inputs.python }}

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
runs-on: ubuntu-latest

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

- name: Set up Python ${{ github.event.inputs.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ github.event.inputs.python }}

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
Expand Down

0 comments on commit 230939b

Please sign in to comment.