diff --git a/.github/actions/auto-pr-description/action.yml b/.github/actions/auto-pr-description/action.yml index 365d981..44088df 100644 --- a/.github/actions/auto-pr-description/action.yml +++ b/.github/actions/auto-pr-description/action.yml @@ -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 diff --git a/.github/actions/auto-pr-description/package.json b/.github/actions/auto-pr-description/package.json index e1a85f0..bdd55e2 100644 --- a/.github/actions/auto-pr-description/package.json +++ b/.github/actions/auto-pr-description/package.json @@ -16,6 +16,6 @@ "author": "RedShelf", "license": "MIT", "engines": { - "node": ">=18.0.0" + "node": ">=24.0.0" } } diff --git a/.github/actions/auto-release-description/action.yml b/.github/actions/auto-release-description/action.yml index dc94ec3..95868d9 100644 --- a/.github/actions/auto-release-description/action.yml +++ b/.github/actions/auto-release-description/action.yml @@ -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 diff --git a/.github/actions/auto-release-description/package.json b/.github/actions/auto-release-description/package.json index e1a85f0..bdd55e2 100644 --- a/.github/actions/auto-release-description/package.json +++ b/.github/actions/auto-release-description/package.json @@ -16,6 +16,6 @@ "author": "RedShelf", "license": "MIT", "engines": { - "node": ">=18.0.0" + "node": ">=24.0.0" } } diff --git a/.github/actions/predict-next-version/action.yml b/.github/actions/predict-next-version/action.yml index cce5593..78a9eba 100644 --- a/.github/actions/predict-next-version/action.yml +++ b/.github/actions/predict-next-version/action.yml @@ -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 diff --git a/.github/actions/static-analysis/action.yml b/.github/actions/static-analysis/action.yml index 4b5197e..79f64b9 100644 --- a/.github/actions/static-analysis/action.yml +++ b/.github/actions/static-analysis/action.yml @@ -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 diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml index 648470c..f2cdc8b 100644 --- a/.github/workflows/check-release.yml +++ b/.github/workflows/check-release.yml @@ -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 diff --git a/.github/workflows/git-flow.yml b/.github/workflows/git-flow.yml index 88e1229..80ef00c 100644 --- a/.github/workflows/git-flow.yml +++ b/.github/workflows/git-flow.yml @@ -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] @@ -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 @@ -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 @@ -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 @@ -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: @@ -116,7 +116,7 @@ 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 @@ -124,7 +124,7 @@ jobs: 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 @@ -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 @@ -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 @@ -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: diff --git a/.github/workflows/initialize.yml b/.github/workflows/initialize.yml index 0fefc63..dbad716 100644 --- a/.github/workflows/initialize.yml +++ b/.github/workflows/initialize.yml @@ -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 diff --git a/.github/workflows/lint-cfn.yml b/.github/workflows/lint-cfn.yml index 85fd8cd..e8529b9 100644 --- a/.github/workflows/lint-cfn.yml +++ b/.github/workflows/lint-cfn.yml @@ -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: | @@ -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 diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index 8837d27..c5f2abc 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -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 diff --git a/.github/workflows/semantic-pre-release.yml b/.github/workflows/semantic-pre-release.yml index 3ef1816..2056aff 100644 --- a/.github/workflows/semantic-pre-release.yml +++ b/.github/workflows/semantic-pre-release.yml @@ -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: diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index 2aa57be..3796d15 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -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: diff --git a/.github/workflows/tag-tickets-with-release.yml b/.github/workflows/tag-tickets-with-release.yml index 1ef1900..b17dcab 100644 --- a/.github/workflows/tag-tickets-with-release.yml +++ b/.github/workflows/tag-tickets-with-release.yml @@ -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 diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml index 2949952..d4af91e 100644 --- a/.github/workflows/validate-pr.yml +++ b/.github/workflows/validate-pr.yml @@ -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 diff --git a/.github/workflows/version-notification-example.yml b/.github/workflows/version-notification-example.yml index 9646f6c..409cb49 100644 --- a/.github/workflows/version-notification-example.yml +++ b/.github/workflows/version-notification-example.yml @@ -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 diff --git a/.github/workflows/wip/terraform-apply.yml b/.github/workflows/wip/terraform-apply.yml index 83ac343..4da28b0 100644 --- a/.github/workflows/wip/terraform-apply.yml +++ b/.github/workflows/wip/terraform-apply.yml @@ -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 diff --git a/.github/workflows/wip/terraform-plan.yml b/.github/workflows/wip/terraform-plan.yml index 52bee92..368d405 100644 --- a/.github/workflows/wip/terraform-plan.yml +++ b/.github/workflows/wip/terraform-plan.yml @@ -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 diff --git a/.github/workflows/wizcli-scanner.yml b/.github/workflows/wizcli-scanner.yml index 5e79363..eafa4ef 100644 --- a/.github/workflows/wizcli-scanner.yml +++ b/.github/workflows/wizcli-scanner.yml @@ -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