Skip to content

Commit 867a7ea

Browse files
authored
Added dependbot configuration for autoupdating action versions (#875)
2 parents 73fb078 + 4320a64 commit 867a7ea

4 files changed

Lines changed: 20 additions & 14 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ updates:
99
directory: "/" # Location of package manifests
1010
schedule:
1111
interval: "monthly"
12+
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
# Check for updates to GitHub Actions every week
17+
interval: "weekly"

.github/workflows/build-view.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
uses: actions/checkout@v4
2626

2727
- name: Setup Node.js
28-
uses: actions/setup-node@v4
28+
uses: actions/setup-node@v6
2929
with:
3030
node-version: 20
3131

3232
- name: Setup Python
33-
uses: actions/setup-python@v4
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: "3.11"
3636

@@ -72,7 +72,7 @@ jobs:
7272

7373
- name: Upload Artifact (macOS - dmg only)
7474
if: runner.os == 'macOS'
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v6
7676
with:
7777
name: release-${{ matrix.os }}-${{ matrix.arch }}
7878
path: |
@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Upload Artifact (Windows - exe only)
8383
if: runner.os == 'Windows'
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v6
8585
with:
8686
name: release-${{ matrix.os }}-${{ matrix.arch }}
8787
path: |
@@ -97,19 +97,19 @@ jobs:
9797
9898
# Download all artifacts with correct names
9999
- name: Download mac-x64 artifact
100-
uses: actions/download-artifact@v4
100+
uses: actions/download-artifact@v7
101101
with:
102102
name: release-macos-15-intel-x64
103103
path: temp-mac-x64
104104

105105
- name: Download mac-arm64 artifact
106-
uses: actions/download-artifact@v4
106+
uses: actions/download-artifact@v7
107107
with:
108108
name: release-macos-latest-arm64
109109
path: temp-mac-arm64
110110

111111
- name: Download win-x64 artifact
112-
uses: actions/download-artifact@v4
112+
uses: actions/download-artifact@v7
113113
with:
114114
name: release-windows-latest-x64
115115
path: temp-win-x64

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
uses: actions/checkout@v4
3838

3939
- name: Setup Node.js
40-
uses: actions/setup-node@v4
40+
uses: actions/setup-node@v6
4141
with:
4242
node-version: 20
4343

4444
- name: Setup Python
45-
uses: actions/setup-python@v4
45+
uses: actions/setup-python@v6
4646
with:
4747
python-version: "3.11"
4848

@@ -83,7 +83,7 @@ jobs:
8383
VITE_STACK_SECRET_SERVER_KEY: ${{ secrets.VITE_STACK_SECRET_SERVER_KEY }}
8484

8585
- name: Upload Artifact
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v6
8787
with:
8888
name: release-${{ matrix.os }}-${{ matrix.arch }}
8989
path: |
@@ -101,19 +101,19 @@ jobs:
101101
102102
# Download all artifacts with correct names
103103
- name: Download mac-x64 artifact
104-
uses: actions/download-artifact@v4
104+
uses: actions/download-artifact@v7
105105
with:
106106
name: release-macos-15-intel-x64
107107
path: temp-mac-x64
108108

109109
- name: Download mac-arm64 artifact
110-
uses: actions/download-artifact@v4
110+
uses: actions/download-artifact@v7
111111
with:
112112
name: release-macos-latest-arm64
113113
path: temp-mac-arm64
114114

115115
- name: Download win-x64 artifact
116-
uses: actions/download-artifact@v4
116+
uses: actions/download-artifact@v7
117117
with:
118118
name: release-windows-latest-x64
119119
path: temp-win-x64

.github/workflows/lint-markdown.yml

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

2727
- name: Get changed markdown files
2828
id: changed-files
29-
uses: tj-actions/changed-files@v45
29+
uses: tj-actions/changed-files@v47
3030
with:
3131
files: |
3232
**.md

0 commit comments

Comments
 (0)