Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 4 (#190)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Mar 22, 2024
1 parent 6bab287 commit d9ea69a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/automatic_generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
need_to_release: ${{ steps.need-to-release.outputs.need-to-release }}
steps:
- name: checkout repo content
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: store current ha version
id: current-ha-version
run: echo "::set-output name=current-ha-version::$(cat ha_version)"
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
python-version: ['3.11']
steps:
- name: checkout repo content
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: download artifact
uses: actions/download-artifact@v4
with:
Expand All @@ -83,7 +83,7 @@ jobs:
runs-on: "ubuntu-latest"
if: needs.generate_package.outputs.need_to_release == 'true'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: download artifact
uses: actions/download-artifact@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
generate_package:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v4"
- name: checkout repo content
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
make_release:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: store current ha version
id: current-ha-version
run: echo "::set-output name=current-ha-version::$(cat ha_version)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
make_release:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
python-version: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit d9ea69a

Please sign in to comment.