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 #557

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 @@ -14,6 +14,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
18 changes: 9 additions & 9 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.4.0
- uses: actions/setup-node@v2.4.1
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: npm
node-version: 16
Expand All @@ -56,7 +56,7 @@ jobs:
github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v4.1.9
Expand All @@ -72,9 +72,9 @@ jobs:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }} on ${{ matrix.os }}
uses: actions/setup-node@v2.4.1
uses: actions/setup-node@v2
with:
cache: npm
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v2
- uses: hadolint/hadolint-action@v1.6.0
with:
dockerfile: Dockerfile
Expand All @@ -131,7 +131,7 @@ jobs:
needs: lint-docker-file
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v2
- name: Build and Start App
run: |
cp .env.template .env
Expand Down Expand Up @@ -159,12 +159,12 @@ jobs:
github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- 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.4.0
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.4.0
- 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.4.0
- uses: actions/checkout@v2
- name: TypoCheck
uses: typoci/spellcheck-action@v1.1.0
env:
Expand Down