Skip to content

Commit 65744e9

Browse files
authored
Merge pull request #46 from DavidCEllis/dependabot/github_actions/ci-actions-114a821fd4
Bump the ci-actions group with 4 updates
2 parents cddd483 + 878f059 commit 65744e9

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/auto-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: ["3.12", "3.13"]
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v6
2323
with:

.github/workflows/build-exe.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: windows-latest
1111

1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
- name: Set up Python
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
python application/setup.py build
2727
- name: Store the built application
28-
uses: actions/upload-artifact@v5
28+
uses: actions/upload-artifact@v6
2929
with:
3030
name: splitguides-app
3131
path: build/SplitGuides_v*.zip
@@ -42,12 +42,12 @@ jobs:
4242
id-token: write # IMPORTANT: mandatory for sigstore
4343
steps:
4444
- name: Download the zipapp
45-
uses: actions/download-artifact@v6
45+
uses: actions/download-artifact@v7
4646
with:
4747
name: splitguides-app
4848
path: dist/
4949
- name: Sign the zipapp with Sigstore
50-
uses: sigstore/gh-action-sigstore-python@v3.1.0
50+
uses: sigstore/gh-action-sigstore-python@v3.2.0
5151
with:
5252
release-signing-artifacts: false
5353
inputs: >-

.github/workflows/publish_to_pypi.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: windows-latest
1111

1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
- name: Set up Python
@@ -26,7 +26,7 @@ jobs:
2626
- name: Build a binary wheel and a source tarball
2727
run: python3 -m build
2828
- name: Store the distribution packages
29-
uses: actions/upload-artifact@v5
29+
uses: actions/upload-artifact@v6
3030
with:
3131
name: python-package-distributions
3232
path: dist/
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Download all the dists
48-
uses: actions/download-artifact@v6
48+
uses: actions/download-artifact@v7
4949
with:
5050
name: python-package-distributions
5151
path: dist/
@@ -66,12 +66,12 @@ jobs:
6666

6767
steps:
6868
- name: Download all the dists
69-
uses: actions/download-artifact@v6
69+
uses: actions/download-artifact@v7
7070
with:
7171
name: python-package-distributions
7272
path: dist/
7373
- name: Sign the dists with Sigstore
74-
uses: sigstore/gh-action-sigstore-python@v3.1.0
74+
uses: sigstore/gh-action-sigstore-python@v3.2.0
7575
with:
7676
release-signing-artifacts: false
7777
inputs: >-

.github/workflows/test-builds.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: windows-latest
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: Set up Python
@@ -28,7 +28,7 @@ jobs:
2828
run: >-
2929
python application/setup.py build
3030
- name: Store the built app
31-
uses: actions/upload-artifact@v5
31+
uses: actions/upload-artifact@v6
3232
with:
3333
name: splitguides-app-dev
3434
path: build/SplitGuides_v*.zip
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: windows-latest
4040

4141
steps:
42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
with:
4444
fetch-depth: 0
4545
- name: Set up Python
@@ -55,7 +55,7 @@ jobs:
5555
- name: Build a binary wheel and a source tarball
5656
run: python3 -m build
5757
- name: Store the distribution packages
58-
uses: actions/upload-artifact@v5
58+
uses: actions/upload-artifact@v6
5959
with:
6060
name: python-package-distributions
6161
path: dist/

0 commit comments

Comments
 (0)