Skip to content

Commit

Permalink
Update all non-major dependencies (#36)
Browse files Browse the repository at this point in the history
* Update all non-major dependencies

* Release workflow

* checkov

* format

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Nicolas Vuillamy <nicolas.vuillamy@gmail.com>
  • Loading branch information
renovate[bot] and nvuillam authored Sep 19, 2023
1 parent 85552f2 commit 8c963d9
Show file tree
Hide file tree
Showing 3 changed files with 1,777 additions and 961 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/deploy-RELEASE.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#

#######################################
# Start the job on all push to master #
#######################################
name: "Build & Deploy - RELEASE"
on:
release:
# Want to run the automation when a release is created
types: ["created"]

permissions: read-all

###############
# Set the Job #
###############
jobs:
deploy:
runs-on: ubuntu-latest
permissions: read-all
environment:
name: release
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
# Defaults to the user or organization that owns the workflow file
scope: "nvuillam"
- run: yarn
- run: yarn config set network-timeout 300000 && yarn publish || echo "Unable to publish package version. Or published in background because of NPM bug ?"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test-mega-linter-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2.5.1
uses: actions/setup-node@v2.5.2
with:
node-version: "12"
- name: Install dependencies
Expand Down
Loading

0 comments on commit 8c963d9

Please sign in to comment.