Skip to content

Commit

Permalink
chore(deps): upgrade projen dependencies (#1299)
Browse files Browse the repository at this point in the history
Automated PR to upgrade projen dependencies

---------

Co-authored-by: Momo Kornher <[email protected]>
Co-authored-by: Momo Kornher <[email protected]>
(cherry picked from commit fa0b0a0)
  • Loading branch information
aws-cdk-automation committed Sep 3, 2024
1 parent 5a646fb commit 2941a78
Show file tree
Hide file tree
Showing 10 changed files with 74 additions and 60 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/upgrade-main.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/upgrade-maintenance-v5.3.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/upgrade-maintenance-v5.4.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion projenrc/benchmark-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class BenchmarkTest {
ACTIONS_SETUP_NODE(undefined, false),
{
name: 'Download artifact',
uses: 'actions/download-artifact@v3',
uses: 'actions/download-artifact@v4',
with: { name: artifactName },
},
YARN_INSTALL('--check-files'),
Expand Down
19 changes: 11 additions & 8 deletions projenrc/build-workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,11 @@ export class BuildWorkflow {
{
name: 'Upload patch',
if: 'steps.self-mutation.outputs.needed',
uses: 'actions/upload-artifact@v3',
uses: 'actions/upload-artifact@v4.3.6',
with: {
name: '.repo.patch',
path: '.repo.patch',
overwrite: true,
},
},
{
Expand All @@ -109,7 +110,7 @@ export class BuildWorkflow {
// Upload artifacts...
{
name: 'Upload artifact',
uses: 'actions/upload-artifact@v3',
uses: 'actions/upload-artifact@v4.3.6',
with: {
name: 'build-output',
path: [
Expand All @@ -119,6 +120,7 @@ export class BuildWorkflow {
'!${{ github.workspace }}/node_modules',
'!${{ github.workspace }}/fixtures/node_modules',
].join('\n'),
overwrite: true,
},
},
{
Expand Down Expand Up @@ -149,7 +151,7 @@ export class BuildWorkflow {
},
{
name: 'Download patch',
uses: 'actions/download-artifact@v3',
uses: 'actions/download-artifact@v4',
with: {
name: '.repo.patch',
path: '${{ runner.temp }}',
Expand Down Expand Up @@ -198,7 +200,7 @@ export class BuildWorkflow {
steps: [
{
name: 'Download artifact',
uses: 'actions/download-artifact@v3',
uses: 'actions/download-artifact@v4',
with: { name: 'build-output', path: '${{ github.workspace }}' },
},
{
Expand Down Expand Up @@ -254,7 +256,7 @@ export class BuildWorkflow {
steps: [
{
name: 'Download artifact',
uses: 'actions/download-artifact@v3',
uses: 'actions/download-artifact@v4',
with: { name: 'build-output', path: '${{ github.workspace }}' },
},
{
Expand All @@ -275,10 +277,11 @@ export class BuildWorkflow {
},
{
name: 'Upload artifact',
uses: 'actions/upload-artifact@v3',
uses: 'actions/upload-artifact@v4.3.6',
with: {
name: 'release-package',
path: '${{ github.workspace }}/dist',
overwrite: true,
},
},
],
Expand Down Expand Up @@ -309,7 +312,7 @@ export class BuildWorkflow {
ACTIONS_SETUP_NODE('${{ matrix.node-version }}', false),
{
name: 'Download Artifact',
uses: 'actions/download-artifact@v3',
uses: 'actions/download-artifact@v4',
with: {
name: 'release-package',
path: '${{ runner.temp }}/release-package',
Expand Down Expand Up @@ -360,7 +363,7 @@ export class BuildWorkflow {
ACTIONS_SETUP_NODE(undefined, false),
{
name: 'Download Artifact',
uses: 'actions/download-artifact@v3',
uses: 'actions/download-artifact@v4',
with: {
name: 'release-package',
path: '${{ runner.temp }}/release-package',
Expand Down
5 changes: 3 additions & 2 deletions projenrc/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,18 +106,19 @@ export class ReleaseWorkflow {
},
{
name: 'Upload artifact',
uses: 'actions/upload-artifact@v3',
uses: 'actions/upload-artifact@v4.3.6',
with: {
name: releasePackageName,
path: '${{ github.workspace }}/dist',
overwrite: true,
},
},
],
});

const downloadArtifactStep: github.workflows.JobStep = {
name: 'Download artifact',
uses: 'actions/download-artifact@v3',
uses: 'actions/download-artifact@v4',
with: {
name: releasePackageName,
},
Expand Down
Loading

0 comments on commit 2941a78

Please sign in to comment.