Skip to content

Commit ef021b7

Browse files
committed
chore: Update GitHub actions
1 parent e10f5e2 commit ef021b7

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
create-nuget:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
4141

@@ -77,7 +77,7 @@ jobs:
7777
dotnet pack src/bunit.generators/ -c release --output ${{ env.NUGET_DIRECTORY }} -p:ContinuousIntegrationBuild=true -p:publicrelease=true
7878
7979
# Publish the NuGet package as an artifact, so they can be used in the following jobs
80-
- uses: actions/upload-artifact@v4
80+
- uses: actions/upload-artifact@v5
8181
with:
8282
name: ${{ env.NUGET_PACKAGES_ARTIFACT }}
8383
if-no-files-found: error
@@ -92,7 +92,7 @@ jobs:
9292
- name: Setup .NET
9393
uses: actions/setup-dotnet@v5
9494

95-
- uses: actions/download-artifact@v5
95+
- uses: actions/download-artifact@v6
9696
with:
9797
name: ${{ env.NUGET_PACKAGES_ARTIFACT }}
9898
path: ${{ env.NUGET_DIRECTORY }}
@@ -117,7 +117,7 @@ jobs:
117117

118118
steps:
119119
- name: 🛒 Checkout repository
120-
uses: actions/checkout@v5
120+
uses: actions/checkout@v6
121121
with:
122122
fetch-depth: 0
123123

@@ -139,7 +139,7 @@ jobs:
139139

140140
- name: 📛 Upload hang- and crash-dumps on test failure
141141
if: success() || failure()
142-
uses: actions/upload-artifact@v4
142+
uses: actions/upload-artifact@v5
143143
with:
144144
if-no-files-found: ignore
145145
name: test-dumps
@@ -151,7 +151,7 @@ jobs:
151151
runs-on: ubuntu-latest
152152
needs: [ create-nuget ]
153153
steps:
154-
- uses: actions/checkout@v5
154+
- uses: actions/checkout@v6
155155
with:
156156
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
157157

@@ -161,7 +161,7 @@ jobs:
161161
dotnet-version: |
162162
9.0.x
163163
164-
- uses: actions/download-artifact@v5
164+
- uses: actions/download-artifact@v6
165165
with:
166166
name: ${{ env.NUGET_PACKAGES_ARTIFACT }}
167167
path: ${{ env.NUGET_DIRECTORY }}
@@ -211,7 +211,7 @@ jobs:
211211
runs-on: ubuntu-latest
212212
steps:
213213
- name: 🛒 Checkout repository
214-
uses: actions/checkout@v5
214+
uses: actions/checkout@v6
215215
with:
216216
fetch-depth: 0
217217

@@ -264,7 +264,7 @@ jobs:
264264
if: github.event_name == 'pull_request' && github.repository_owner == 'bunit-dev'
265265
steps:
266266
- name: 'Checkout Repository'
267-
uses: actions/checkout@v5
267+
uses: actions/checkout@v6
268268
- name: 'Dependency Review'
269269
uses: actions/dependency-review-action@v4
270270

@@ -275,7 +275,7 @@ jobs:
275275
permissions:
276276
id-token: write
277277
steps:
278-
- uses: actions/download-artifact@v5
278+
- uses: actions/download-artifact@v6
279279
with:
280280
name: ${{ env.NUGET_PACKAGES_ARTIFACT }}
281281
path: ${{ env.NUGET_DIRECTORY }}

.github/workflows/docs-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131

3232
- name: 🛒 Checkout repository
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636
token: ${{ secrets.BUNIT_BOT_TOKEN }}

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.ref == 'refs/heads/main' && contains(fromJson('["major","minor"]'), github.event.inputs.versionIncrement)
1717
steps:
1818
- name: 🛒 Checkout repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
token: ${{ secrets.BUNIT_BOT_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535

3636
- name: 🛒 Checkout repository
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
with:
3939
fetch-depth: 0
4040
token: ${{ secrets.BUNIT_BOT_TOKEN }}

0 commit comments

Comments
 (0)