Skip to content

Commit 1a436a4

Browse files
authored
Bump github actions versions (#177)
- actions/checkout to v5 - actions/setup-python to v6 - actions/download-artifact to v5
1 parent 07cbb8e commit 1a436a4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
needs: test
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- name: Set up Python
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: "3.x"
3838
- name: Install pypa/build
@@ -71,7 +71,7 @@ jobs:
7171
id-token: write
7272
steps:
7373
- name: Download the distribution packages
74-
uses: actions/download-artifact@v4
74+
uses: actions/download-artifact@v5
7575
with:
7676
name: python-package-distributions
7777
path: dist/
@@ -92,7 +92,7 @@ jobs:
9292
id-token: write
9393
steps:
9494
- name: Download the distribution packages
95-
uses: actions/download-artifact@v4
95+
uses: actions/download-artifact@v5
9696
with:
9797
name: python-package-distributions
9898
path: dist/

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040

4141
runs-on: ${{ matrix.os }}
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
- name: Set up Python ${{ matrix.python-version }}
45-
uses: actions/setup-python@v5
45+
uses: actions/setup-python@v6
4646
with:
4747
python-version: ${{ matrix.python-version }}
4848
- name: Install dependencies

0 commit comments

Comments
 (0)