diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 5cc96384..a2a2d430 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -49,7 +49,7 @@ jobs: # Checkout the source code # ############################ - name: Checkout Code - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 with: # Full git history is needed to get a proper list # of changed files within `super-linter` diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 5a213997..05b23261 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -49,7 +49,7 @@ jobs: # Checkout the source code # ############################ - name: Checkout Code - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 with: # Full git history is needed to get a proper list # of changed files within `super-linter` diff --git a/.github/workflows/deps-npm.yml b/.github/workflows/deps-npm.yml index 5f857743..0548e8e2 100644 --- a/.github/workflows/deps-npm.yml +++ b/.github/workflows/deps-npm.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Update Dependencies run: ./.github/scripts/update-npm.sh env: diff --git a/.github/workflows/deps-python.yml b/.github/workflows/deps-python.yml index a244860b..e875b40f 100644 --- a/.github/workflows/deps-python.yml +++ b/.github/workflows/deps-python.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Update Dependencies run: ./.github/scripts/update-python.sh env: diff --git a/.github/workflows/stack-linter.yml b/.github/workflows/stack-linter.yml index e7b99fb4..8727bbf1 100644 --- a/.github/workflows/stack-linter.yml +++ b/.github/workflows/stack-linter.yml @@ -36,7 +36,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index 39521521..030e1ac7 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -16,7 +16,7 @@ jobs: # Checkout code base # ###################### - name: Checkout code - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 # ########################## # # Build the docker image # diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index 6ad96a84..d59a2047 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -33,7 +33,7 @@ jobs: ############################# # Check out the latest code # ############################# - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 ###################### # Run the tag action #