mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 08:41:02 -05:00
Bump actions/checkout from 2.4.0 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [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/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
d90e4a4b72
commit
5d5ae35998
7 changed files with 7 additions and 7 deletions
2
.github/workflows/deploy-production.yml
vendored
2
.github/workflows/deploy-production.yml
vendored
|
@ -49,7 +49,7 @@ jobs:
|
||||||
# Checkout the source code #
|
# Checkout the source code #
|
||||||
############################
|
############################
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v2.4.0
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
# Full git history is needed to get a proper list
|
# Full git history is needed to get a proper list
|
||||||
# of changed files within `super-linter`
|
# of changed files within `super-linter`
|
||||||
|
|
2
.github/workflows/deploy-release.yml
vendored
2
.github/workflows/deploy-release.yml
vendored
|
@ -49,7 +49,7 @@ jobs:
|
||||||
# Checkout the source code #
|
# Checkout the source code #
|
||||||
############################
|
############################
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v2.4.0
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
# Full git history is needed to get a proper list
|
# Full git history is needed to get a proper list
|
||||||
# of changed files within `super-linter`
|
# of changed files within `super-linter`
|
||||||
|
|
2
.github/workflows/deps-npm.yml
vendored
2
.github/workflows/deps-npm.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Update Dependencies
|
- name: Update Dependencies
|
||||||
run: ./.github/scripts/update-npm.sh
|
run: ./.github/scripts/update-npm.sh
|
||||||
env:
|
env:
|
||||||
|
|
2
.github/workflows/deps-python.yml
vendored
2
.github/workflows/deps-python.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Update Dependencies
|
- name: Update Dependencies
|
||||||
run: ./.github/scripts/update-python.sh
|
run: ./.github/scripts/update-python.sh
|
||||||
env:
|
env:
|
||||||
|
|
2
.github/workflows/stack-linter.yml
vendored
2
.github/workflows/stack-linter.yml
vendored
|
@ -36,7 +36,7 @@ jobs:
|
||||||
# Checkout the code base #
|
# Checkout the code base #
|
||||||
##########################
|
##########################
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v2.4.0
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
# Full git history is needed to get a proper list of changed files within `super-linter`
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
2
.github/workflows/trivy.yml
vendored
2
.github/workflows/trivy.yml
vendored
|
@ -16,7 +16,7 @@ jobs:
|
||||||
# Checkout code base #
|
# Checkout code base #
|
||||||
######################
|
######################
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2.4.0
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
# ##########################
|
# ##########################
|
||||||
# # Build the docker image #
|
# # Build the docker image #
|
||||||
|
|
2
.github/workflows/versioning.yml
vendored
2
.github/workflows/versioning.yml
vendored
|
@ -33,7 +33,7 @@ jobs:
|
||||||
#############################
|
#############################
|
||||||
# Check out the latest code #
|
# Check out the latest code #
|
||||||
#############################
|
#############################
|
||||||
- uses: actions/checkout@v2.4.0
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
######################
|
######################
|
||||||
# Run the tag action #
|
# Run the tag action #
|
||||||
|
|
Loading…
Reference in a new issue