Skip to content

Commit 6607020

Browse files
authored
Merge pull request #213 from numba/renovate/actions-checkout-6.x
Update actions/checkout action to v6
2 parents 5298184 + 3d6ee81 commit 6607020

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

‎.github/workflows/release.yml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
tag: ${{ steps.create-gh-release.outputs.computed-prefix }}${{ steps.create-gh-release.outputs.version }}
1818
steps:
19-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
19+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2020
- id: create-gh-release
2121
uses: taiki-e/create-gh-release-action@26b80501670402f1999aff4b934e1574ef2d3705 # v1.9.1
2222
with:
@@ -28,7 +28,7 @@ jobs:
2828
name: Build wheels
2929
runs-on: ubuntu-24.04
3030
steps:
31-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
31+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3232

3333
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3434
with:
@@ -46,7 +46,7 @@ jobs:
4646
name: Make SDist
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
49+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5050

5151
- name: Build SDist
5252
run: pipx run build --sdist
@@ -61,7 +61,7 @@ jobs:
6161
env:
6262
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6363
steps:
64-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
64+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
6565
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
6666
with:
6767
name: artifact
@@ -77,7 +77,7 @@ jobs:
7777
env:
7878
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7979
steps:
80-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
80+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
8181
- name: mark release as non-draft
8282
run: |
8383
gh release edit ${{ needs.create-release.outputs.tag }} --draft=false

‎.github/workflows/test.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
shell: bash -el {0}
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
19+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2020
with:
2121
fetch-depth: 0
2222
- name: Setup Miniconda

0 commit comments

Comments
��(0)