Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
build(deps): update actions/checkout action to v3.5.0
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Mar 31, 2023
1 parent e68b843 commit 2bb47f3
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0
with:
fetch-depth: 0 # need to checkout "all commits" for certain features to work (e.g., get all changed files)

Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -122,7 +122,7 @@ jobs:
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
VERSION: ${{ needs.prepare_ci_run.outputs.VERSION }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Set up Go
uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
LATEST_KEPTN_PRERELEASE: ${{ steps.prepare_keptn_version_matrix.outputs.LATEST_PRERELEASE }}
steps:
- name: Check out code.
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Prepare Keptn version matrix
id: prepare_keptn_version_matrix
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
steps:
# Checkout code for the integrations tests in test/e2e
- name: Check out code.
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Setup Go
uses: actions/[email protected]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -23,7 +23,7 @@ jobs:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Run make
run: make build-lint
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -23,7 +23,7 @@ jobs:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: Run make
run: make build-lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3.5.0

- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2

0 comments on commit 2bb47f3

Please sign in to comment.