Skip to content

Commit

Permalink
chore: update workflow actions versions (#2125)
Browse files Browse the repository at this point in the history
---

By submitting this pull request, I confirm that my contribution is made
under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
  • Loading branch information
mrgrain authored Nov 14, 2024
1 parent aae682e commit f3030f8
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto-tag-dev-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 .github/workflows/auto-tag-dev-v5.5.yml

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

4 changes: 2 additions & 2 deletions .github/workflows/auto-tag-dev.yml

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

4 changes: 2 additions & 2 deletions .github/workflows/auto-tag-releases-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 .github/workflows/auto-tag-releases-v5.5.yml

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

4 changes: 2 additions & 2 deletions .github/workflows/auto-tag-releases.yml

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

4 changes: 2 additions & 2 deletions .github/workflows/build.yml

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

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

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

4 changes: 2 additions & 2 deletions projenrc/build-workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class BuildWorkflow {
steps: [
{
name: 'Checkout',
uses: 'actions/checkout@v3',
uses: 'actions/checkout@v4',
},
{
name: 'Setup Node.js',
Expand Down Expand Up @@ -140,7 +140,7 @@ export class BuildWorkflow {
steps: [
{
name: 'Checkout',
uses: 'actions/checkout@v3',
uses: 'actions/checkout@v4',
with: {
ref: '${{ github.event.pull_request.head.ref }}',
repository: '${{ github.event.pull_request.head.repo.full_name }}',
Expand Down
2 changes: 1 addition & 1 deletion projenrc/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { github } from 'projen';

export const ACTIONS_CHECKOUT: github.workflows.JobStep = {
name: 'Checkout',
uses: 'actions/checkout@v3',
uses: 'actions/checkout@v4',
with: {
ref: '${{ github.sha }}',
repository: '${{ github.repository }}',
Expand Down
2 changes: 1 addition & 1 deletion projenrc/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class ReleaseWorkflow {
const publishTarget = 'publish-target';
const federateToAwsStep: github.workflows.JobStep = {
name: 'Federate to AWS',
uses: 'aws-actions/configure-aws-credentials@v1',
uses: 'aws-actions/configure-aws-credentials@v4',
with: {
'aws-region': 'us-east-1',
'role-to-assume': '${{ secrets.AWS_ROLE_TO_ASSUME }}',
Expand Down

0 comments on commit f3030f8

Please sign in to comment.