Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ permissions:
contents: read
pull-requests: write

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
dependency-review:
runs-on: ubuntu-latest
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Verify and Deploy

Check notice on line 1 in .github/workflows/main.yml

View workflow job for this annotation

GitHub Actions / StandardLint audit

CI configuration

Check for CI configuration file
on:
workflow_dispatch:
inputs:
Expand All @@ -8,7 +8,8 @@
permissions: write-all
env:
AWS_REGION : "eu-west-1"
AWS_REGION_ZONE : "eu-central-1"
AWS_REGION_ZONE : "eu-central-1"
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
deploy:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -86,23 +87,23 @@
${{ runner.os }}-gems-

- name: Testing with CFN Lint Command
uses: scottbrenner/cfn-lint-action@c5f18dc4be13042d564f3052f4067dc9ceafe355 # v2.7.0
uses: scottbrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
with:
command: cfn-lint -t cloudformation/template.yml
- name: Testing route53 with CFN Lint
uses: scottbrenner/cfn-lint-action@c5f18dc4be13042d564f3052f4067dc9ceafe355 # v2.7.0
uses: scottbrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
with:
command: cfn-lint -t cloudformation/route53.yml
- name: Testing disaster-recovery with CFN Lint
uses: scottbrenner/cfn-lint-action@c5f18dc4be13042d564f3052f4067dc9ceafe355 # v2.7.0
uses: scottbrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
with:
command: cfn-lint -t cloudformation/disaster-recovery.yml
- name: Run cfn-nag
uses: stelligent/cfn_nag@8b5f03da74202ba323a145e9d037ddce6cab9dec # master
with:
input_path: cloudformation
- name: Testing app with CFN Lint
uses: scottbrenner/cfn-lint-action@c5f18dc4be13042d564f3052f4067dc9ceafe355 # v2.7.0
uses: scottbrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
with:
command: cfn-lint -t cloudformation/app.yml
- name: Run cfn-nag
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Verify Pull Request
on: [pull_request]

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

permissions:
checks: write
id-token: write # This is required for requesting the JWT
Expand Down Expand Up @@ -70,19 +73,19 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Testing template with CFN Lint
uses: scottbrenner/cfn-lint-action@c5f18dc4be13042d564f3052f4067dc9ceafe355 # v2.7.0
uses: scottbrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
with:
command: cfn-lint -t cloudformation/template.yml
- name: Testing route53 with CFN Lint
uses: scottbrenner/cfn-lint-action@c5f18dc4be13042d564f3052f4067dc9ceafe355 # v2.7.0
uses: scottbrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
with:
command: cfn-lint -t cloudformation/route53.yml
- name: Testing disaster-recovery with CFN Lint
uses: scottbrenner/cfn-lint-action@c5f18dc4be13042d564f3052f4067dc9ceafe355 # v2.7.0
uses: scottbrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
with:
command: cfn-lint -t cloudformation/disaster-recovery.yml
- name: Testing app with CFN Lint
uses: scottbrenner/cfn-lint-action@c5f18dc4be13042d564f3052f4067dc9ceafe355 # v2.7.0
uses: scottbrenner/cfn-lint-action@ed184e91f5085a2932501da8314e899e5e0ef5be # v2.7.1
with:
command: cfn-lint -t cloudformation/app.yml
- name: Run cfn-nag
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ on:
# Declare default permissions as read only.
permissions: read-all

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
analysis:
name: Scorecard analysis
Expand Down
4 changes: 2 additions & 2 deletions cloudformation/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ Resources:
TargetArn: !Ref "DeadLetterTopic"
PackageType: "Zip"
Role: !GetAtt LambdaFunctionRole.Arn
Runtime: "nodejs20.x"
Runtime: "nodejs24.x"
Timeout: 30
VpcConfig:
SecurityGroupIds:
Expand Down Expand Up @@ -483,7 +483,7 @@ Resources:
TargetArn: !Ref "DeadLetterTopic"
PackageType: "Zip"
Role: !GetAtt LambdaFunctionRole.Arn
Runtime: "nodejs20.x"
Runtime: "nodejs24.x"
Timeout: 30
VpcConfig:
SecurityGroupIds:
Expand Down
Loading