Skip to content

Commit 87debfc

Browse files
Update GitHub Actions
1 parent f8ff472 commit 87debfc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build-and-deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: 🔧 install + build # This project is built using npm and outputs the result to the 'build' folder
1414
run: |
1515
yarn

.github/workflows/lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
markdown:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: ⬇️ lint markdown files # Lints all markdown (.md) files
1515
uses: avto-dev/markdown-lint@v1
1616
with:
@@ -19,8 +19,8 @@ jobs:
1919
renovate:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: 🧼 lint renovate config # Validates changes to renovate.json config file
24-
uses: suzuki-shunsuke/github-action-renovate-config-validator@v0.1.2
24+
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1
2525
with:
2626
config_file_path: 'renovate.json'

.github/workflows/spellcheck.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
spellcheck:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: 🔤 check spelling # New dictionary words can be added to docs/software.txt and docs/wayfair.txt
12-
uses: streetsidesoftware/cspell-action@v2.11.0
12+
uses: streetsidesoftware/cspell-action@v6.9.0
1313
with:
1414
files: "src/docs/**/*.md"
1515
incremental_files_only: true

.github/workflows/validate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
validate-build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: 🔧 install + build # This project is built using npm and outputs the result to the 'build' folder
1212
run: |
1313
yarn

0 commit comments

Comments
 (0)