Skip to content

Commit 5c98c76

Browse files
committed
ci: update GitHub Actions for Node 24
1 parent 039ca33 commit 5c98c76

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/dev-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828

2929
- name: Set up Bun
30-
uses: oven-sh/setup-bun@v1
30+
uses: oven-sh/setup-bun@v2
3131
with:
3232
bun-version: latest
3333

@@ -55,22 +55,22 @@ jobs:
5555
bun run compile:windows
5656
5757
- name: Log in to the Container registry
58-
uses: docker/login-action@v3
58+
uses: docker/login-action@v4
5959
with:
6060
registry: ghcr.io
6161
username: ${{ github.actor }}
6262
password: ${{ secrets.GITHUB_TOKEN }}
6363

6464
- name: Extract metadata (tags, labels) for Docker
6565
id: meta
66-
uses: docker/metadata-action@v5
66+
uses: docker/metadata-action@v6
6767
with:
6868
images: ghcr.io/${{ github.repository }}
6969
tags: |
7070
type=raw,value=dev
7171
7272
- name: Build and push Docker image
73-
uses: docker/build-push-action@v5
73+
uses: docker/build-push-action@v7
7474
with:
7575
context: .
7676
push: true
@@ -80,7 +80,7 @@ jobs:
8080
APP_VERSION=dev-${{ github.sha }}
8181
8282
- name: Create dev pre-release
83-
uses: softprops/action-gh-release@v1
83+
uses: softprops/action-gh-release@v2
8484
with:
8585
files: |
8686
plexus-linux

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Set up Bun
21-
uses: oven-sh/setup-bun@v1
21+
uses: oven-sh/setup-bun@v2
2222
with:
2323
bun-version: latest
2424

@@ -37,20 +37,20 @@ jobs:
3737
bun run compile:windows
3838
3939
- name: Log in to the Container registry
40-
uses: docker/login-action@v3
40+
uses: docker/login-action@v4
4141
with:
4242
registry: ghcr.io
4343
username: ${{ github.actor }}
4444
password: ${{ secrets.GITHUB_TOKEN }}
4545

4646
- name: Extract metadata (tags, labels) for Docker
4747
id: meta
48-
uses: docker/metadata-action@v5
48+
uses: docker/metadata-action@v6
4949
with:
5050
images: ghcr.io/${{ github.repository }}
5151

5252
- name: Build and push Docker image
53-
uses: docker/build-push-action@v5
53+
uses: docker/build-push-action@v7
5454
with:
5555
context: .
5656
push: true
@@ -71,7 +71,7 @@ jobs:
7171
fi
7272
7373
- name: Create Release
74-
uses: softprops/action-gh-release@v1
74+
uses: softprops/action-gh-release@v2
7575
with:
7676
files: |
7777
plexus-linux

.github/workflows/rewrite-author.yml

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

1414
steps:
1515
- name: Checkout full history
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)