Skip to content

Commit a5c02b2

Browse files
authored
Merge pull request #10 from inab/dependabot/github_actions/github-actions-f6cb9b2958
Bump the github-actions group with 4 updates
2 parents 6cf4abb + a937498 commit a5c02b2

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/pip-audit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
fi
6565
cat audit-report-${{ matrix.python-version }}.md >> "$GITHUB_STEP_SUMMARY"
6666
fi
67-
- uses: actions/upload-artifact@v5
67+
- uses: actions/upload-artifact@v6
6868
with:
6969
name: audit-${{ matrix.python-version }}
7070
retention-days: 2
@@ -84,7 +84,7 @@ jobs:
8484
id: timestamp
8585
run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT"
8686
- uses: actions/checkout@v6
87-
- uses: actions/download-artifact@v6
87+
- uses: actions/download-artifact@v7
8888
id: download
8989
with:
9090
pattern: audit-*
@@ -122,7 +122,7 @@ jobs:
122122
echo "skip=$skip" >> "$GITHUB_OUTPUT"
123123
- name: Create Pull Request
124124
id: cpr
125-
uses: peter-evans/create-pull-request@v7
125+
uses: peter-evans/create-pull-request@v8
126126
if: steps.move.outputs.skip == 'false'
127127
with:
128128
title: Updated constraints due security reasons (triggered on ${{ steps.timestamp.outputs.timestamp }} by ${{ github.sha }})

.github/workflows/pre-commit.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed
5656
- name: MyPy cache
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: '.mypy_cache/[0-9]*'
6060
key: mypy-${{ matrix.python-version }}
@@ -87,7 +87,7 @@ jobs:
8787
- name: Print licences report
8888
if: ${{ always() }}
8989
run: echo "${{ steps.license_check_print_report.outputs.report }}"
90-
- uses: actions/upload-artifact@v5
90+
- uses: actions/upload-artifact@v6
9191
with:
9292
name: constraints-artifacts-${{ matrix.python-version }}
9393
retention-days: 2
@@ -138,7 +138,7 @@ jobs:
138138
- run: |
139139
pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed
140140
- name: MyPy cache
141-
uses: actions/cache@v4
141+
uses: actions/cache@v5
142142
with:
143143
path: '.mypy_cache/[0-9]*'
144144
key: mypy-${{ matrix.python-version }}
@@ -171,7 +171,7 @@ jobs:
171171
- name: Print licences report
172172
if: ${{ always() }}
173173
run: echo "${{ steps.license_check_print_report.outputs.report }}"
174-
- uses: actions/upload-artifact@v5
174+
- uses: actions/upload-artifact@v6
175175
with:
176176
name: constraints-artifacts-${{ matrix.python-version }}
177177
retention-days: 2
@@ -189,7 +189,7 @@ jobs:
189189
id: timestamp
190190
run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT"
191191
- uses: actions/checkout@v6
192-
- uses: actions/download-artifact@v6
192+
- uses: actions/download-artifact@v7
193193
id: download
194194
with:
195195
pattern: constraints-artifacts-*
@@ -215,7 +215,7 @@ jobs:
215215
echo "skip=$skip" >> "$GITHUB_OUTPUT"
216216
- name: Create Pull Request
217217
id: cpr
218-
uses: peter-evans/create-pull-request@v7
218+
uses: peter-evans/create-pull-request@v8
219219
if: steps.move.outputs.skip == 'false'
220220
with:
221221
title: Updated constraints (triggered on ${{ steps.timestamp.outputs.timestamp }} by ${{ github.sha }})

0 commit comments

Comments
 (0)