Skip to content

Commit

Permalink
chore: 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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 10, 2024
1 parent ad2288c commit 0a57ec8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conventional_commits_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
conventional_commit_title:
runs-on: [self-hosted, ARM64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/conventional-commits
2 changes: 1 addition & 1 deletion .github/workflows/get-github-ref-names.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
test-github-ref-names:
runs-on: [self-hosted, ARM64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/get-github-ref-names
id: refs
- name: Calculate Cache-From
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/install-happy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ jobs:
test-install-happy-latest:
runs-on: [self-hosted, ARM64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/install-happy
- run: happy version
- run: gh auth status
test-install-happy-pinned:
runs-on: [self-hosted, ARM64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/install-happy
with:
happy_version: "0.81.0"
Expand All @@ -22,7 +22,7 @@ jobs:
test-install-happy-x64:
runs-on: [self-hosted, linux, X64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/install-happy
- run: happy version
- run: gh auth status
2 changes: 1 addition & 1 deletion .github/workflows/jira-release-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
pullRequestBody: ${{ fromJson(needs.find_released_prs.outputs.prBodyArray) }}
if: ${{ needs.find_released_prs.outputs.prBodyArray != '[]' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Find Jira Marker
id: findJiraMarker
uses: chanzuckerberg/github-actions/.github/actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-tf-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
tf-test-cache:
runs-on: [ARM64,self-hosted,Linux]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Terraform build cache
uses: ./.github/actions/tf-cache-providers
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-tf-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
outputs:
allChanges: ${{ steps.changedDirs.outputs.allChanges }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
workspace: ${{ fromJson(needs.find-changed-dirs.outputs.allChanges) }}
if: ${{ needs.find-changed-dirs.outputs.allChanges != '[]' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Terraform plan
uses: ./.github/actions/tf-plan
with:
Expand Down

0 comments on commit 0a57ec8

Please sign in to comment.