Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
chrkaatz committed Oct 17, 2023
1 parent cd0f6dd commit 7239a3f
Show file tree
Hide file tree
Showing 6 changed files with 2,572 additions and 7,922 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -12,10 +12,10 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .node-version
@@ -1 +1 @@
16.14.2
18.18.2
20 changes: 20 additions & 0 deletions README.md
Expand Up @@ -28,6 +28,26 @@ Lint workflow files in `.github/workflows`:
npx --yes gh-actions-linter@v0.1.8
```

## Also available as a Github Action

```yml
name: CI

on:
push:
branches: [main]

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: validate github workflow files to have pinned versions
uses: digitalservicebund/github-actions/github-actions-linter@33695c875c198153e136ed0b99e06962e7fee0af
```

## Releasing

👉 [release-it](https://www.npmjs.com/package/release-it)
Expand Down
2 changes: 1 addition & 1 deletion index.js
@@ -1,5 +1,5 @@
import fs from "fs"
import glob from "glob"
import { glob } from "glob"
import YAML from "yamljs"

export default (pattern) =>
Expand Down

0 comments on commit 7239a3f

Please sign in to comment.