Skip to content

Commit 6cf4abb

Browse files
authored
Merge pull request #9 from inab/dependabot/github_actions/github-actions-95c31c5005
Bump the github-actions group across 1 directory with 3 updates
2 parents 792d266 + 85e74e9 commit 6cf4abb

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/build_n_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repo
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
- name: Setup Python environment
1414
uses: actions/setup-python@v6
1515
with:

.github/workflows/pip-audit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
1414
name: pip-audit python ${{ matrix.python-version }}
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- uses: actions/setup-python@v6
1818
with:
1919
python-version: ${{ matrix.python-version }}
@@ -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@v4
67+
- uses: actions/upload-artifact@v5
6868
with:
6969
name: audit-${{ matrix.python-version }}
7070
retention-days: 2
@@ -83,8 +83,8 @@ jobs:
8383
- name: Get analysis timestamp
8484
id: timestamp
8585
run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT"
86-
- uses: actions/checkout@v5
87-
- uses: actions/download-artifact@v5
86+
- uses: actions/checkout@v6
87+
- uses: actions/download-artifact@v6
8888
id: download
8989
with:
9090
pattern: audit-*

.github/workflows/pre-commit.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
1616
name: Pre-commit python ${{ matrix.python-version }}
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 100
2121
- uses: actions/setup-python@v6
@@ -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@v4
90+
- uses: actions/upload-artifact@v5
9191
with:
9292
name: constraints-artifacts-${{ matrix.python-version }}
9393
retention-days: 2
@@ -100,7 +100,7 @@ jobs:
100100
python-version: [ "3.7" ]
101101
name: Pre-commit python ${{ matrix.python-version }}
102102
steps:
103-
- uses: actions/checkout@v5
103+
- uses: actions/checkout@v6
104104
with:
105105
fetch-depth: 100
106106
- uses: actions/setup-python@v6
@@ -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@v4
174+
- uses: actions/upload-artifact@v5
175175
with:
176176
name: constraints-artifacts-${{ matrix.python-version }}
177177
retention-days: 2
@@ -188,8 +188,8 @@ jobs:
188188
- name: Get analysis timestamp
189189
id: timestamp
190190
run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT"
191-
- uses: actions/checkout@v5
192-
- uses: actions/download-artifact@v5
191+
- uses: actions/checkout@v6
192+
- uses: actions/download-artifact@v6
193193
id: download
194194
with:
195195
pattern: constraints-artifacts-*

0 commit comments

Comments
 (0)