Skip to content

Commit 9169e6a

Browse files
committed
chore: Update actions and Nu to latest version
1 parent 3726725 commit 9169e6a

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/nightly-alpine.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
packages: write
1919
steps:
2020
- name: Checkout Code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
ref: main
2424

@@ -97,7 +97,7 @@ jobs:
9797
needs: build-and-push-Nu
9898
steps:
9999
- name: Delete all containers from repository without tags
100-
uses: Chizkiyahu/delete-untagged-ghcr-action@v4
100+
uses: Chizkiyahu/delete-untagged-ghcr-action@v6
101101
with:
102102
owner_type: user
103103
untagged_only: true

.github/workflows/nightly-build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
nightly_tag: ${{ steps.vars.outputs.nightly_tag }}
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838
if: github.repository == 'nushell/nightly'
3939
with:
4040
ref: main
@@ -46,7 +46,7 @@ jobs:
4646
uses: hustcer/setup-nu@v3
4747
if: github.repository == 'nushell/nightly'
4848
with:
49-
version: 0.105.1
49+
version: 0.109.1
5050

5151
# Synchronize the main branch of nightly repo with the main branch of Nushell official repo
5252
- name: Prepare for Nightly Release
@@ -171,7 +171,7 @@ jobs:
171171

172172
runs-on: ${{matrix.os}}
173173
steps:
174-
- uses: actions/checkout@v4
174+
- uses: actions/checkout@v6
175175
with:
176176
ref: main
177177
fetch-depth: 0
@@ -201,7 +201,7 @@ jobs:
201201
- name: Setup Nushell
202202
uses: hustcer/setup-nu@v3
203203
with:
204-
version: 0.105.1
204+
version: 0.109.1
205205

206206
- name: Release Nu Binary
207207
id: nu
@@ -224,7 +224,7 @@ jobs:
224224
# REF: https://github.com/marketplace/actions/gh-release
225225
# Create a release only in nushell/nightly repo
226226
- name: Publish Archive
227-
uses: softprops/action-gh-release@v2.0.9
227+
uses: softprops/action-gh-release@v2.5.0
228228
if: ${{ startsWith(github.repository, 'nushell/nightly') }}
229229
with:
230230
prerelease: true
@@ -253,7 +253,7 @@ jobs:
253253
- name: Create Checksums
254254
run: cd release && shasum -a 256 * > ../SHA256SUMS
255255
- name: Publish Checksums
256-
uses: softprops/action-gh-release@v2.0.9
256+
uses: softprops/action-gh-release@v2.5.0
257257
with:
258258
draft: false
259259
prerelease: true
@@ -269,14 +269,14 @@ jobs:
269269
needs: [release, sha256sum]
270270
runs-on: ubuntu-latest
271271
steps:
272-
- uses: actions/checkout@v4
272+
- uses: actions/checkout@v6
273273
with:
274274
ref: main
275275

276276
- name: Setup Nushell
277277
uses: hustcer/setup-nu@v3
278278
with:
279-
version: 0.105.1
279+
version: 0.109.1
280280

281281
# Keep the last a few releases
282282
- name: Delete Older Releases

.github/workflows/pre-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: github.repository == 'nushell/nightly'
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
ref: main
3232
fetch-depth: 0
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup Nushell
3737
uses: hustcer/setup-nu@v3
3838
with:
39-
version: 0.105.1
39+
version: 0.109.1
4040

4141
# Synchronize the main branch of nightly repo with the main branch of Nushell official repo
4242
- name: Pre Release

.github/workflows/release-msi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ${{ matrix.os }}
4343

4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v6
4646

4747
- name: Install Wix Toolset 6 for Windows
4848
shell: pwsh
@@ -58,7 +58,7 @@ jobs:
5858
- name: Setup Nushell
5959
uses: hustcer/setup-nu@v3
6060
with:
61-
version: 0.105.1
61+
version: 0.109.1
6262

6363
- name: Release MSI Packages
6464
id: nu
@@ -72,7 +72,7 @@ jobs:
7272

7373
# REF: https://github.com/marketplace/actions/gh-release
7474
- name: Publish Archive
75-
uses: softprops/action-gh-release@v2.0.5
75+
uses: softprops/action-gh-release@v2.5.0
7676
with:
7777
tag_name: ${{ inputs.tag }}
7878
files: ${{ steps.nu.outputs.msi }}
@@ -95,7 +95,7 @@ jobs:
9595
- name: Create Checksums
9696
run: cd release && rm -f SHA256SUMS && shasum -a 256 * > ../SHA256SUMS
9797
- name: Publish Checksums
98-
uses: softprops/action-gh-release@v2.0.5
98+
uses: softprops/action-gh-release@v2.5.0
9999
with:
100100
files: SHA256SUMS
101101
tag_name: ${{ inputs.tag }}

.github/workflows/release-nu-image.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
base: [debian, alpine]
2323
steps:
2424
- name: Checkout Code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
ref: main
2828
fetch-depth: 0
@@ -149,7 +149,7 @@ jobs:
149149
needs: build-and-push-Nu
150150
steps:
151151
- name: Delete all containers from repository without tags
152-
uses: Chizkiyahu/delete-untagged-ghcr-action@v4
152+
uses: Chizkiyahu/delete-untagged-ghcr-action@v6
153153
with:
154154
owner_type: user
155155
untagged_only: true

0 commit comments

Comments
 (0)