Skip to content
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

build(dependabot): ignore minor and patch github-actions updates #149

Merged
merged 1 commit into from Nov 17, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Expand Up @@ -5,6 +5,10 @@ updates:
include: scope
prefix: build
directory: /
ignore:
- dependency-name: "actions/*"
update-types:
["version-update:semver-minor", "version-update:semver-patch"]
schedule:
interval: monthly
open-pull-requests-limit: 25
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Expand Up @@ -20,10 +20,10 @@ jobs:
release-type: node
package-name: node-unrtf

- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v2
if: steps.release.outputs.release_created

- uses: actions/setup-node@v2.4.1
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://registry.npmjs.org/
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Expand Up @@ -33,8 +33,8 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/setup-node@v2.4.1
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Install
Expand All @@ -53,7 +53,7 @@ jobs:
github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v4.1.9
Expand All @@ -69,9 +69,9 @@ jobs:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2.4.1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install
Expand Down Expand Up @@ -118,12 +118,12 @@ jobs:
github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v2
- name: Save PR Number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v2
with:
name: pr
path: pr/
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2.3.5
uses: actions/checkout@v2
# Initialises the CodeQL tools for scanning
- name: Initialise CodeQL
uses: github/codeql-action/init@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/link-check.yml
Expand Up @@ -32,8 +32,8 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/setup-node@v2.4.1
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Run Linkinator
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spell-check.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v2
- name: TypoCheck
uses: typoci/spellcheck-action@v1.1.0
env:
Expand Down