Skip to content

Commit dc974d0

Browse files
authored
chore: clean up workflows (#729)
1 parent 149867b commit dc974d0

File tree

15 files changed

+59
-174
lines changed

15 files changed

+59
-174
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# These are supported funding model platforms
22

33
patreon: streetsidesoftware
4-
tidelift: "npm/cspell"
4+
tidelift: 'npm/cspell'
55
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
66
- streetsidesoftware
77
open_collective: cspell

.github/actions/github-app-token/action.yaml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/actions/pr/action.yaml

Lines changed: 0 additions & 68 deletions
This file was deleted.

.github/actions/setup/action.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ inputs:
44
node-version:
55
required: false
66
description: The version of Node to use.
7-
default: "22.x"
7+
default: '22.x'
88
runs:
9-
using: "composite"
9+
using: 'composite'
1010
steps:
1111
- name: Use Node.js ${{ inputs.node-version }}
12-
uses: actions/setup-node@v6
12+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
1313
with:
14-
registry-url: "https://registry.npmjs.org"
14+
registry-url: 'https://registry.npmjs.org'
1515
node-version: ${{ inputs.node-version }}
16-
cache: "npm"
16+
cache: 'npm'
1717
- name: NPM Version
1818
run: npm -v;
1919
shell: bash

.github/dependabot.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "npm" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: 'npm' # See documentation for possible values
9+
directory: '/' # Location of package manifests
1010
schedule:
11-
interval: "weekly"
11+
interval: 'weekly'
1212

13-
- package-ecosystem: "github-actions"
13+
- package-ecosystem: 'github-actions'
1414
# Workflow files stored in the
1515
# default location of `.github/workflows`
1616
directories:
17-
- "/"
18-
- "/.github/actions/*"
17+
- '/'
18+
- '/.github/actions/*'
1919
schedule:
20-
interval: "daily"
20+
interval: 'daily'

.github/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ changelog:
1717
- dev
1818
- title: Other Changes
1919
labels:
20-
- "*"
20+
- '*'
2121
- title: Maintenance
2222
labels:
2323
- chore

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "CodeQL"
1+
name: 'CodeQL'
22

33
on:
44
push:
@@ -11,7 +11,7 @@ on:
1111
- cspell4
1212
workflow_dispatch:
1313
schedule:
14-
- cron: "0 23 * * 0"
14+
- cron: '0 23 * * 0'
1515

1616
jobs:
1717
analyze:
@@ -20,15 +20,15 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2424
with:
2525
# Make sure it goes back far enough to find where the branch split from main
2626
fetch-depth: 20
2727

2828
- name: Initialize CodeQL
2929
uses: github/codeql-action/init@v4
3030
with:
31-
languages: "javascript"
31+
languages: 'javascript'
3232

3333
- name: Perform CodeQL Analysis
3434
uses: github/codeql-action/analyze@v4

.github/workflows/cspell-action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
cspell:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1414
- uses: streetsidesoftware/cspell-action@v8
1515
with:
16-
files: "."
16+
files: '.'
1717
incremental_files_only: false
1818
check_dot_files: true

.github/workflows/publish-docker-image.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@
22
# To get a newer version, you will need to update the SHA.
33
# You can also reference a tag or branch, but the action may change without warning.
44

5-
name: " 📦 Publish Docker Images"
5+
name: ' 📦 Publish Docker Images'
66

77
on:
88
workflow_dispatch:
99
inputs:
1010
dryRun:
11-
description: "Dry Run"
11+
description: 'Dry Run'
1212
type: choice
1313
options:
14-
- "yes"
15-
- "no"
16-
default: "no"
14+
- 'yes'
15+
- 'no'
16+
default: 'no'
1717
required: false
1818
ref:
19-
description: "Reference / tag to publish"
19+
description: 'Reference / tag to publish'
2020
required: false
2121
type: string
2222

2323
workflow_call:
2424
inputs:
2525
ref:
26-
description: "Reference / tag to publish"
26+
description: 'Reference / tag to publish'
2727
required: true
2828
type: string
2929

3030
env:
3131
REGISTRY: ghcr.io
32-
IMAGE_NAME: "streetsidesoftware/cspell"
32+
IMAGE_NAME: 'streetsidesoftware/cspell'
3333

3434
permissions:
3535
contents: read
@@ -44,7 +44,7 @@ jobs:
4444

4545
steps:
4646
- name: Checkout repository
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4848
with:
4949
ref: ${{ github.event.inputs.ref || github.ref }}
5050

.github/workflows/release-please.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: " 🚀 release-please"
1+
name: ' 🚀 release-please'
22

33
on:
44
push:
@@ -35,7 +35,7 @@ jobs:
3535
id-token: write
3636
steps:
3737
# The logic below handles the npm publication:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3939
with:
4040
ref: ${{ needs.release-please.outputs.tag_name }}
4141
- name: Setup

0 commit comments

Comments
 (0)