Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
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](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and bokysan committed Sep 5, 2023
1 parent 14e42cc commit a6bbe7b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/unit-tests

Expand All @@ -19,7 +19,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/integration-tests
with:
Expand All @@ -33,7 +33,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/helm-chart-tests

Expand All @@ -46,7 +46,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Buildkit setup
- uses: ./.github/actions/buildx-setup
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Buildkit setup
- uses: ./.github/actions/buildx-setup
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/unit-tests

Expand All @@ -19,7 +19,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/integration-tests
with:
Expand All @@ -33,7 +33,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/helm-chart-tests

Expand All @@ -46,7 +46,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Buildkit setup
- uses: ./.github/actions/buildx-setup
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/unit-tests

Expand All @@ -19,7 +19,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/integration-tests
with:
Expand All @@ -33,7 +33,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/helm-chart-tests

Expand All @@ -46,7 +46,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -163,7 +163,7 @@ jobs:
echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_OUTPUT
- name: Checkout gh-pages
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: "gh-pages"
path: "gh-pages"
Expand Down

0 comments on commit a6bbe7b

Please sign in to comment.