Skip to content

Commit 02569e7

Browse files
authored
Merge pull request #190 from learningequality/dependabot/github_actions/github-76468cb07f
Bump actions/checkout from 5 to 6 in the github group
2 parents e7bc2b4 + b50fe6f commit 02569e7

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/finalized_specs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
modified: ${{ steps.changes.outputs.modified }}
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121
- id: changes

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: actions/setup-node@v6
1313
with:
1414
registry-url: https://registry.npmjs.org/

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- uses: actions/setup-python@v6
2929
- run: pip install setuptools
3030
- uses: pre-commit/action@v3.0.1

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id-token: write
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Set up Python
2020
uses: actions/setup-python@v6
2121
with:

.github/workflows/pythontest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
3333
- name: Set up Python ${{ matrix.python-version }}
3434
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
@@ -67,7 +67,7 @@ jobs:
6767
container:
6868
image: python:${{ matrix.python-version }}-buster
6969
steps:
70-
- uses: actions/checkout@v5
70+
- uses: actions/checkout@v6
7171
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
7272
- name: Cache pip
7373
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}

0 commit comments

Comments
 (0)