From 672a4cd0f7482de3f0a5fda294eb8b9af5a1f2b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 09:06:36 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-container-main.yml | 4 ++-- .github/workflows/test-container-pr.yml | 6 +++--- .github/workflows/update-dependencies.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-container-main.yml b/.github/workflows/deploy-container-main.yml index f7034818..a50bab8e 100644 --- a/.github/workflows/deploy-container-main.yml +++ b/.github/workflows/deploy-container-main.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Tools run: | @@ -30,7 +30,7 @@ jobs: # Get Default OSCAL Content for testing - name: Pull OSCAL Content - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: EasyDynamics/oscal-demo-content ref: "test-content" diff --git a/.github/workflows/test-container-pr.yml b/.github/workflows/test-container-pr.yml index f85843de..0af7ee9a 100644 --- a/.github/workflows/test-container-pr.yml +++ b/.github/workflows/test-container-pr.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup NodeJS @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Tools run: | @@ -51,7 +51,7 @@ jobs: # Get Default OSCAL Content for testing - name: Pull OSCAL Content - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: EasyDynamics/oscal-demo-content ref: "test-content" diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 8539868c..fcb5bede 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node uses: actions/setup-node@v3