Skip to content

Bump carlosperate/download-file-action from 1 to 2 #190

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/check-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Download JSON schema for package.json
id: download-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/package.json
file-url: https://json.schemastore.org/package.json
Expand All @@ -45,7 +45,7 @@ jobs:
# This schema is referenced by the package.json schema, so must also be accessible.
- name: Download JSON schema for ava.json
id: download-ava-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/ava.json
file-url: https://json.schemastore.org/ava.json
Expand All @@ -55,7 +55,7 @@ jobs:
# This schema is referenced by the package.json schema, so must also be accessible.
- name: Download JSON schema for eslintrc.json
id: download-eslintrc-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/eslintrc.json
file-url: https://json.schemastore.org/eslintrc.json
Expand All @@ -65,7 +65,7 @@ jobs:
# This schema is referenced by the package.json schema, so must also be accessible.
- name: Download JSON schema for jscpd configuration file
id: download-jscpd-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/jscpd.json
file-url: https://json.schemastore.org/jscpd.json
Expand All @@ -75,7 +75,7 @@ jobs:
# This schema is referenced by the package.json schema, so must also be accessible.
- name: Download JSON schema for Prettier configuration file
id: download-prettierrc-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/prettierrc.json
file-url: https://json.schemastore.org/prettierrc.json
Expand All @@ -85,7 +85,7 @@ jobs:
# This schema is referenced by the package.json schema, so must also be accessible.
- name: Download JSON schema for semantic-release
id: download-semantic-release-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/semantic-release.json
file-url: https://json.schemastore.org/semantic-release.json
Expand All @@ -95,7 +95,7 @@ jobs:
# This schema is referenced by the package.json schema, so must also be accessible.
- name: Download JSON schema for .stylelintrc
id: download-stylelintrc-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/stylelintrc.json
file-url: https://json.schemastore.org/stylelintrc.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-tsconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Download JSON schema for tsconfig.json
id: download-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/tsconfig.json
file-url: https://json.schemastore.org/tsconfig.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Download JSON schema for labels configuration file
id: download-schema
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/arduino-tooling-gh-label-configuration-schema.json
location: ${{ runner.temp }}/label-configuration-schema
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:

steps:
- name: Download
uses: carlosperate/download-file-action@v1
uses: carlosperate/download-file-action@v2
with:
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}

Expand Down