Skip to content

Commit 76509a5

Browse files
authored
Merge pull request #155 from ttsukagoshi/main
v1.0.4 release
2 parents a431bc3 + e900088 commit 76509a5

File tree

6 files changed

+546
-556
lines changed

6 files changed

+546
-556
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: github/codeql-action/init@v2
4747
with:
4848
languages: ${{ matrix.language }}
4949
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -54,7 +54,7 @@ jobs:
5454
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5555
# If this step fails, then you should remove it and run the build manually (see below)
5656
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
57+
uses: github/codeql-action/autobuild@v2
5858

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
6868
# make release
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
71+
uses: github/codeql-action/analyze@v2

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# Checkout the code base #
4040
##########################
4141
- name: Checkout Code
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343
with:
4444
# Full git history is needed to get a proper list of changed files within `super-linter`
4545
fetch-depth: 0

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
CLASP_SCRIPT_ID: ${{ secrets.CLASP_SCRIPT_ID }}
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323

24-
- uses: actions/setup-node@v2
24+
- uses: actions/setup-node@v3
2525
with:
2626
node-version: '14'
2727

2828
- name: Cache node modules
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3.0.4
3030
env:
3131
cache-name: cache-node-modules
3232
with:

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"files.eol": "\n",
4+
"editor.tabSize": 2,
5+
"editor.defaultFormatter": "esbenp.prettier-vscode",
6+
"json.schemas": [
7+
{
8+
"fileMatch": ["appsscript.json"],
9+
"url": "http://json.schemastore.org/appsscript"
10+
},
11+
{
12+
"fileMatch": [".clasp.json"],
13+
"url": "http://json.schemastore.org/clasp"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)