Skip to content

Commit aebd608

Browse files
authored
Merge pull request #122 from bgilbert/workflows
workflows: update actions/checkout and actions/cache to current
2 parents d535237 + 1569f82 commit aebd608

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/retile.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Check out repo
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
- name: Set up Python
2424
uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ env.PYTHON_VER }}
2727
- name: Install dependencies
2828
run: pip install --break-system-packages ${PYTHON_DEPS}
2929
- name: Cache dependencies
30-
uses: actions/cache/save@v4
30+
uses: actions/cache/save@v5
3131
with:
3232
key: ${{ env.PIP_CACHE_KEY }}
3333
path: /home/runner/.cache/pip
@@ -58,13 +58,13 @@ jobs:
5858
matrix: ${{ fromJson(needs.setup.outputs.slide-matrix) }}
5959
steps:
6060
- name: Check out repo
61-
uses: actions/checkout@v5
61+
uses: actions/checkout@v6
6262
- name: Set up Python
6363
uses: actions/setup-python@v6
6464
with:
6565
python-version: ${{ env.PYTHON_VER }}
6666
- name: Cache dependencies
67-
uses: actions/cache/restore@v4
67+
uses: actions/cache/restore@v5
6868
with:
6969
key: ${{ env.PIP_CACHE_KEY }}
7070
path: /home/runner/.cache/pip
@@ -97,13 +97,13 @@ jobs:
9797
runs-on: ubuntu-latest
9898
steps:
9999
- name: Check out repo
100-
uses: actions/checkout@v5
100+
uses: actions/checkout@v6
101101
- name: Set up Python
102102
uses: actions/setup-python@v6
103103
with:
104104
python-version: ${{ env.PYTHON_VER }}
105105
- name: Cache dependencies
106-
uses: actions/cache/restore@v4
106+
uses: actions/cache/restore@v5
107107
with:
108108
key: ${{ env.PIP_CACHE_KEY }}
109109
path: /home/runner/.cache/pip

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
runs-on: ubuntu-slim
1616
steps:
1717
- name: Check out repo
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
- name: Set up Python
2020
uses: actions/setup-python@v6
2121
with:
2222
python-version: 3.14
2323
- name: Install dependencies
2424
run: python -m pip install pre-commit
2525
- name: Cache pre-commit environments
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
with:
2828
key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
2929
path: ~/.cache/pre-commit

0 commit comments

Comments
 (0)