diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5b127daf95..305ec43947 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -66,7 +66,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 5dffa6d365..5747235b89 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -5,7 +5,7 @@ # Source repository: https://github.com/actions/dependency-review-action # Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement name: 'Dependency Review' -on: +on: pull_request: paths: - 'package.json' @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Dependency Review uses: actions/dependency-review-action@v3 with: @@ -61,10 +61,10 @@ jobs: GPL-1.0-only, GPL-1.0-or-later, GPL-1.0, GPL-2.0-only, GPL-2.0-or-later, GPL-2.0, GPL-3.0-only, GPL-3.0-or-later, GPL-3.0, QPL-1.0, Sleepycat - comment-summary-in-pr: true + comment-summary-in-pr: true # ([String]). Block the pull request on these licenses (optional) # Possible values: Any `spdx_id` value(s) from https://docs.github.com/en/rest/licenses - + # ([String]). Skip these GitHub Advisory Database IDs during detection (optional) # Possible values: Any valid GitHub Advisory Database ID from https://github.com/advisories - #allow-ghsas: + #allow-ghsas: diff --git a/.github/workflows/lint-test-build.yml b/.github/workflows/lint-test-build.yml index 4c8174a6c1..d573a4ee59 100644 --- a/.github/workflows/lint-test-build.yml +++ b/.github/workflows/lint-test-build.yml @@ -13,10 +13,10 @@ jobs: node-version: ${{ fromJSON(vars.NODE_VERSIONS) }} steps: - name: Clone Sage-Lib Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set Node Version - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} diff --git a/.github/workflows/release-deploy.yml b/.github/workflows/release-deploy.yml index d353c07491..7529cecb29 100644 --- a/.github/workflows/release-deploy.yml +++ b/.github/workflows/release-deploy.yml @@ -100,7 +100,7 @@ jobs: run: echo "DOCKER_BRANCH_NAME=$(echo $BRANCH_NAME | sed "s/[^[:alnum:]\-\.\_]/-/g")-$GITHUB_RUN_NUMBER" >> $GITHUB_ENV - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Docs Site - name: Build and push docs site diff --git a/.github/workflows/update-release.yml b/.github/workflows/update-release.yml index ade1e25386..b5ee967497 100644 --- a/.github/workflows/update-release.yml +++ b/.github/workflows/update-release.yml @@ -14,7 +14,7 @@ jobs: steps: # Checkout the repository - name: "Checkout this repo to find Sage version" - uses: "actions/checkout@v3" + uses: "actions/checkout@v4" with: fetch-depth: "0"