Skip to content

Commit

Permalink
chore(deps): update bfra-me/renovate-action action to v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bfra-me[bot] authored Dec 31, 2023
1 parent 5ec6833 commit 9d459cb
Show file tree
Hide file tree
Showing 6 changed files with 133,537 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
run: echo 'renovate=true' >> $GITHUB_OUTPUT
- name: Renovate
if: steps.should-renovate.outputs.renovate == 'true'
uses: bfra-me/renovate-action@f7f0b9773ab375076917c2c05c9f678b3a10dffb # v2.3.2
uses: bfra-me/renovate-action@5fec50022c58053f9e2cf7e205c773ed9296c3f2 # v2.4.0
with:
branch: ${{ github.ref != 'refs/heads/main' && github.ref_name || '' }}
cache: ${{ github.event_name == 'push' && contains('["main", "renovate/reconfigure"]', github.ref_name) }}
Expand Down
12 changes: 12 additions & 0 deletions dist/file.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
'use strict'

const pino = require('./pino')
const { once } = require('events')

module.exports = async function (opts = {}) {
const destOpts = Object.assign({}, opts, { dest: opts.destination || 1, sync: false })
delete destOpts.destination
const destination = pino.destination(destOpts)
await once(destination, 'ready')
return destination
}
Loading

0 comments on commit 9d459cb

Please sign in to comment.