Skip to content

Commit 429cf2d

Browse files
fix(deps): update major dependencies
1 parent b9fdf95 commit 429cf2d

7 files changed

Lines changed: 492 additions & 925 deletions

File tree

.github/workflows/docker-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ jobs:
2929
uses: actions/checkout@v6
3030

3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v3
32+
uses: docker/setup-buildx-action@v4
3333

3434
- name: Log in to GitHub Container Registry
3535
if: github.event_name != 'pull_request'
36-
uses: docker/login-action@v3
36+
uses: docker/login-action@v4
3737
with:
3838
registry: ${{ env.REGISTRY }}
3939
username: ${{ github.actor }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Extract metadata (tags, labels)
4343
id: meta
44-
uses: docker/metadata-action@v5
44+
uses: docker/metadata-action@v6
4545
with:
4646
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4747
tags: |
@@ -54,7 +54,7 @@ jobs:
5454
type=raw,value=latest,enable={{is_default_branch}}
5555
5656
- name: Build and push Docker image
57-
uses: docker/build-push-action@v6
57+
uses: docker/build-push-action@v7
5858
with:
5959
context: .
6060
push: ${{ github.event_name != 'pull_request' }}
@@ -69,7 +69,7 @@ jobs:
6969
# Push to AWS ECR for App Runner auto-deploy
7070
- name: Configure AWS credentials
7171
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
72-
uses: aws-actions/configure-aws-credentials@v5
72+
uses: aws-actions/configure-aws-credentials@v6
7373
with:
7474
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7575
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

.github/workflows/electron-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8787

8888
- name: Upload unsigned artifacts for signing
89-
uses: actions/upload-artifact@v6
89+
uses: actions/upload-artifact@v7
9090
id: upload-unsigned
9191
with:
9292
name: windows-unsigned

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v6
1818
with:
19-
node-version: "20"
19+
node-version: "24"
2020
cache: "npm"
2121

2222
- name: Install dependencies
@@ -37,7 +37,7 @@ jobs:
3737
- name: Setup Node.js
3838
uses: actions/setup-node@v6
3939
with:
40-
node-version: "20"
40+
node-version: "24"
4141
cache: "npm"
4242

4343
- name: Install dependencies
@@ -67,7 +67,7 @@ jobs:
6767
CI: true
6868

6969
- name: Upload test results
70-
uses: actions/upload-artifact@v6
70+
uses: actions/upload-artifact@v7
7171
if: always()
7272
with:
7373
name: playwright-report

0 commit comments

Comments
 (0)