Skip to content

Commit c22350e

Browse files
Bump the actions group with 3 updates (#324)
Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6...v6.0.1) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@018cc2c...37930b1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e3fc8a4 commit c22350e

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build-release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ jobs:
6161
echo "cpython_release: $CPYTHON_RELEASE"
6262
6363
- name: "Checkout python/release-tools"
64-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
64+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6565
with:
6666
persist-credentials: false
6767

6868
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
69-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
69+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
7070
with:
7171
persist-credentials: false
7272
repository: "${{ env.GIT_REMOTE }}/cpython"
@@ -97,12 +97,12 @@ jobs:
9797
- verify-input
9898
steps:
9999
- name: "Checkout python/release-tools"
100-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
100+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
101101
with:
102102
persist-credentials: false
103103

104104
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
105-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
105+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
106106
with:
107107
persist-credentials: false
108108
repository: "${{ env.GIT_REMOTE }}/cpython"
@@ -125,7 +125,7 @@ jobs:
125125
python ../release.py --export "$CPYTHON_RELEASE" --skip-docs
126126
127127
- name: "Upload the source artifacts"
128-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
128+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
129129
with:
130130
name: source
131131
path: |
@@ -139,7 +139,7 @@ jobs:
139139
if: fromJSON(needs.verify-input.outputs.build-docs)
140140
steps:
141141
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
142-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
142+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
143143
with:
144144
persist-credentials: false
145145
repository: "${{ env.GIT_REMOTE }}/cpython"
@@ -165,7 +165,7 @@ jobs:
165165
make dist-text
166166
167167
- name: "Upload the docs artifacts"
168-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
168+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
169169
with:
170170
name: docs
171171
path: |
@@ -178,7 +178,7 @@ jobs:
178178
- build-source
179179
steps:
180180
- name: "Download the source artifacts"
181-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
181+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
182182
with:
183183
name: source
184184

@@ -217,7 +217,7 @@ jobs:
217217
triplet: ${{ matrix.arch }}-linux-android
218218
steps:
219219
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
220-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
220+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
221221
with:
222222
persist-credentials: false
223223
repository: "${{ env.GIT_REMOTE }}/cpython"
@@ -226,7 +226,7 @@ jobs:
226226
- name: Build and test
227227
run: ./Android/android.py ci --fast-ci "$triplet"
228228

229-
- uses: actions/upload-artifact@v5
229+
- uses: actions/upload-artifact@v6
230230
with:
231231
name: ${{ env.triplet }}
232232
path: cross-build/${{ env.triplet }}/dist/*

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/[email protected].0
16+
- uses: actions/[email protected].1
1717
with:
1818
persist-credentials: false
1919
- uses: actions/[email protected]

.github/workflows/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", "3.14"]
1818
os: [macos-latest, ubuntu-latest]
1919
steps:
20-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
20+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2121
with:
2222
persist-credentials: false
2323
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0

0 commit comments

Comments
 (0)