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

Batched Dependabot updates #1349

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1182af4
build(deps): bump actions/setup-node from 3.8.1 to 4.0.0
dependabot[bot] Oct 28, 2023
81b5ea9
npm(deps-dev): bump crypto-js from 4.1.1 to 4.2.0
dependabot[bot] Oct 26, 2023
9177772
npm(deps-dev): bump @storybook/addon-a11y from 7.4.0 to 7.5.1
dependabot[bot] Oct 26, 2023
d82fce9
npm(deps-dev): bump @storybook/addons from 7.4.0 to 7.5.1
dependabot[bot] Oct 26, 2023
5490bff
npm(deps-dev): bump @babel/traverse from 7.22.11 to 7.23.2
dependabot[bot] Oct 26, 2023
73ecf9f
npm(deps-dev): bump postcss from 8.4.29 to 8.4.31
dependabot[bot] Oct 26, 2023
642be9d
npm(deps-dev): bump semantic-release from 21.1.1 to 22.0.5
dependabot[bot] Oct 26, 2023
daf717a
npm(deps-dev): bump @semantic-release/github from 9.0.4 to 9.2.1
dependabot[bot] Oct 26, 2023
4c8ef73
npm(deps): bump @angular/common from 15.2.9 to 15.2.10
dependabot[bot] Nov 5, 2023
f17bb36
npm(deps-dev): bump autoprefixer from 10.4.15 to 10.4.16
dependabot[bot] Nov 5, 2023
c791199
npm(deps-dev): bump svg-to-ts from 10.1.0 to 11.0.0
dependabot[bot] Nov 5, 2023
b9b4995
npm(deps-dev): bump @commitlint/prompt from 17.7.1 to 18.4.0
dependabot[bot] Nov 12, 2023
68eec29
build(deps): bump actions/github-script from 6 to 7
dependabot[bot] Nov 19, 2023
a6e9448
build(deps): bump actions/upload-artifact from 3.1.3 to 4.0.0
dependabot[bot] Dec 17, 2023
13625b9
build(deps): bump github/codeql-action from 2 to 3
dependabot[bot] Dec 17, 2023
93fabe6
build(deps): bump actions/download-artifact from 3 to 4
dependabot[bot] Dec 17, 2023
de397f1
npm(deps-dev): bump follow-redirects from 1.15.2 to 1.15.4
dependabot[bot] Jan 10, 2024
98031d4
ci(npm): additional dependabot batcher updates
AndreiRosu Feb 19, 2024
208dbc2
ci(storybook): update storybook to v7.6.16
AndreiRosu Feb 19, 2024
6777607
ci(npm): downgrade packages that should not have been updated
AndreiRosu Feb 19, 2024
568ee31
Merge branch 'master' into batched-dependabot-updates
pauleustice Feb 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/branch_pages_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v3.8.1
- uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'

- name: 'Install dependencies'
run: npm ci

- name: 'Save PR data'
uses: actions/github-script@v6
uses: actions/github-script@v7
id: prData
with:
script: |
Expand All @@ -33,7 +33,7 @@ jobs:
});

- name: 'Download artifacts from PR'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const downloadArtifact = require('./.github/workflow-scripts/gh-pages/download-branch-deploy-artifact.js');
Expand All @@ -49,7 +49,7 @@ jobs:
rm lg-sb-build.zip

- name: 'Notify GitHub of branch deployment'
uses: actions/github-script@v6
uses: actions/github-script@v7
id: deploymentId
with:
script: |
Expand All @@ -61,7 +61,7 @@ jobs:
});

- name: 'Notify GitHub of deployment in progress'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const createDeploymentStatus = require('./.github/workflow-scripts/gh-pages/create-gh-deployment-status.js');
Expand All @@ -74,7 +74,7 @@ jobs:
});

- name: 'Branch deployment to GitHub Pages'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const deployBranch = require('./.github/workflow-scripts/gh-pages/deploy.js');
Expand All @@ -93,7 +93,7 @@ jobs:

- name: 'Notify GitHub of deployment status'
if: always()
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const createDeploymentStatus = require('./.github/workflow-scripts/gh-pages/create-gh-deployment-status.js');
Expand All @@ -107,7 +107,7 @@ jobs:

- name: 'Add label to PR'
if: success()
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const addLabels = require('./.github/workflow-scripts/add-labels.js');
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -47,7 +47,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -61,4 +61,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
token: ${{ secrets.DEPENDABOT_BATCH_TOKEN }}

- name: 'Set Node Version'
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'

Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/master_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4

- name: 'Setup node'
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'npm'
Expand All @@ -27,10 +27,11 @@ jobs:
run: npm run build

- name: 'Upload dist folder'
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.1
with:
name: ${{ github.event.repository.name }}
path: dist/canopy/
overwrite: true

release:
needs: [ build ]
Expand All @@ -39,7 +40,7 @@ jobs:
- uses: actions/checkout@v4

- name: 'Setup node'
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'npm'
Expand All @@ -48,7 +49,7 @@ jobs:
run: npm ci

- name: 'Download dist folder'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: dist/canopy/
Expand All @@ -70,7 +71,7 @@ jobs:
- uses: actions/checkout@v4

- name: 'Setup node'
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'npm'
Expand All @@ -79,13 +80,13 @@ jobs:
run: npm ci

- name: 'Download dist folder'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: dist/canopy/

- name: 'Deployment to GitHub Pages'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const deployBranch = require('./.github/workflow-scripts/gh-pages/deploy.js');
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fetch-depth: 0

- name: 'Setup node'
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v4.0.2
with:
node-version-file: '.nvmrc'
cache: 'npm'
Expand Down Expand Up @@ -51,7 +51,8 @@ jobs:

- name: 'Build storybook'
run: npm run build:storybook -- --output-dir ./lg-sb-build
- uses: actions/upload-artifact@v3.1.3
- uses: actions/upload-artifact@v4.3.1
with:
name: lg-sb-build
path: ./lg-sb-build
overwrite: true
Loading
Loading