Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
build(deps): update actions/checkout action to v4 (#9765)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Oct 12, 2023
1 parent c1a5a00 commit 1d92d62
Show file tree
Hide file tree
Showing 18 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Expand Up @@ -124,7 +124,7 @@ jobs:
DATETIME: ${{ steps.get_datetime.outputs.DATETIME }}
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # need to checkout "all commits" for certain features to work (e.g., get all changed files)
submodules: 'true'
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout helm-charts repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: keptn/helm-charts-dev
path: helm-charts-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-update-go-utils.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
check-latest: true

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Auto update go mod
run: ./gh-actions-scripts/auto-update-utils.sh "${{ env.GO_UTILS_TARGET }}" "go-utils"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-update-keptn-spec.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-cli.yml
Expand Up @@ -55,7 +55,7 @@ jobs:
check-latest: true
go-version: ${{ env.GO_VERSION }}
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
# cache go modules
- uses: actions/cache@v3.3.2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-helm-charts.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
RELEASE_BUILD: ${{ inputs.release }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build Helm Charts
id: build_helm_charts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-docker-image-digests.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check container image digests
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependencies-and-licenses.yml
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Core Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: 'keptn'

- name: Checkout go-utils Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.KEPTN_BOT_TOKEN }}
path: 'go-utils'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deprecated-version-check.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: check deprecated versions
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/detect_stale_images.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Detect stale images on DockerHub
env:
REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yml
Expand Up @@ -102,7 +102,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create downloads folder
run: mkdir ~/downloads
Expand Down Expand Up @@ -614,7 +614,7 @@ jobs:
FINAL_TEST_REPORT_FILEPATH_MARKDOWN: "./final-test-reports/final-test-report.md"
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v3.8.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mongodb-version-check.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
KEPTN_VERSION: ${{ steps.get_keptn_mongodb_version.outputs.MONGODB_VERSION }}
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get Keptn MongoDB version
id: get_keptn_mongodb_version
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -94,7 +94,7 @@ jobs:
releases_created: ${{ steps.release.outputs.releases_created }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run release please
uses: google-github-actions/release-please-action@v3
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
GO_VERSION: ${{ steps.get_go_version.outputs.GO_VERSION }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.KEPTN_BOT_TOKEN }}
Expand Down Expand Up @@ -221,14 +221,14 @@ jobs:
needs: [release-please, prepare, docker_build, build-helm-charts, build-cli]
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
path: keptn
token: ${{ secrets.KEPTN_BOT_TOKEN }}

- name: Checkout helm-charts repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: keptn/helm-charts
path: helm-charts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reviewdog.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
go-version: "~1.18"
id: go
- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install golangci-lint
run: |
# binary will be $(go env GOPATH)/bin/golangci-lint
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security-scans.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
RENDERED_CHART_FILENAME: "scan-tpl.yml"
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'true'
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'true'
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Expand Up @@ -6,6 +6,6 @@ jobs:
lint_shellscripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@2.0.0
2 changes: 1 addition & 1 deletion .github/workflows/test-and-build-docker-images.yml
Expand Up @@ -56,7 +56,7 @@ jobs:
id-token: write # Needed for cosign OIDC authentication against Github
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go 1.x
if: inputs.artifact != 'bridge2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-helm-docs.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v3.8.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zero-downtime-tests.yml
Expand Up @@ -66,7 +66,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Check out code.
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create downloads folder
run: mkdir ~/downloads
Expand Down

0 comments on commit 1d92d62

Please sign in to comment.