Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/actions/auto-pr-description/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ runs:
using: 'composite'
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6.3.0
with:
node-version: '22.x'
node-version: '24.x'

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/auto-pr-description/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"author": "RedShelf",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
"node": ">=24.0.0"
}
}
4 changes: 2 additions & 2 deletions .github/actions/auto-release-description/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ runs:
using: 'composite'
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6.3.0
with:
node-version: '22.x'
node-version: '24.x'

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/auto-release-description/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"author": "RedShelf",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
"node": ">=24.0.0"
}
}
2 changes: 1 addition & 1 deletion .github/actions/predict-next-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
using: "composite"
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Get Latest Version Tag
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/static-analysis/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
using: "composite"
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2
continue-on-error: true

- name: Scan workflow yml files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- uses: VirdocsSoftware/github-actions/.github/actions/predict-next-version@main
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/git-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
timeout-minutes: 5
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
unit-tests:
name: Unit Tests
needs: [initialize]
Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
- name: Run tests
run: |
npm run test
Expand All @@ -47,7 +47,7 @@ jobs:
github.ref == 'refs/heads/main' )
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
- name: Run feature tests
run: |
npm run test:features
Expand All @@ -70,7 +70,7 @@ jobs:
(github.event_name == 'push' && github.ref == 'refs/heads/main')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Install Dependencies
Expand All @@ -95,12 +95,12 @@ jobs:
github.event_name == 'push' &&
github.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6.3.0
with:
node-version: "22.x"
node-version: "24.x"
- name: Run semantic release
run: npx semantic-release@23 -d
env:
Expand All @@ -116,15 +116,15 @@ jobs:
github.event_name == 'push' &&
github.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2

integration-testing:
name: Integration Testing
needs: [deploy-to-develop, initialize]
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2

deploy-to-staging:
name: Deploy to Staging
Expand All @@ -136,7 +136,7 @@ jobs:
github.event_name == 'pull_request' && github.base_ref == 'main' &&
(startsWith(github.head_ref, 'release/v') || startsWith(github.head_ref, 'hotfix/v'))
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2

deploy-to-production:
name: Deploy to Production
Expand All @@ -148,7 +148,7 @@ jobs:
github.event_name == 'push' &&
github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2

semantic-release:
name: Semantic Release
Expand All @@ -161,12 +161,12 @@ jobs:
github.event_name == 'push' &&
github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6.3.0
with:
node-version: "22.x"
node-version: "24.x"
- name: Run semantic release
run: npx semantic-release@23
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/initialize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
- name: Cancel Previous Runs
if: ${{ github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/main' }}
uses: styfle/cancel-workflow-action@0.12.1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-cfn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
echo 'lint-cfn v1.4.0'

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2

- name: Setup CloudFormation Formatter
run: |
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
echo 'lint-cfn v1.4.0'

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2

- name: Setup CloudFormation Linter
uses: scottbrenner/cfn-lint-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Get Version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/semantic-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
github.event_name == 'push' &&
github.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6.3.0
with:
node-version: "22.x"
node-version: "24.x"
- name: Run semantic release
run: npx semantic-release@23 -d
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
github.event_name == 'push' &&
github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6.3.0
with:
node-version: "22.x"
node-version: "24.x"
- name: Run semantic release
run: npx semantic-release@23
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-tickets-with-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: get next predicted version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2
- name: Get Latest Release
uses: VirdocsSoftware/github-actions/.github/actions/predict-next-version@main
- name: Get Package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-notification-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wip/terraform-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2

- name: Configure AWS Credentials for Deployment
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wip/terraform-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2

- name: Configure AWS Credentials for Deployment
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wizcli-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2

- name: Download Wiz CLI
run: curl -o wizcli https://wizcli.app.wiz.io/latest/wizcli && chmod +x wizcli
Expand Down