Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 4 (#2860)
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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jul 8, 2024
1 parent 1bc781a commit ac81cff
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_push_to_docker_hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Login to Docker
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
job: [lint, test, validate-config, build]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cache .npm
uses: actions/cache@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Build frontend
run: docker-compose build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review_cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ contains( github.event.pull_request.labels.*.name, 'review') }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Azure login
uses: azure/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/review_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ contains( github.event.pull_request.labels.*.name, 'review') || github.event.label.name == 'review' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Azure login
uses: azure/[email protected]
Expand All @@ -44,7 +44,7 @@ jobs:
if: ${{ contains( github.event.pull_request.labels.*.name, 'review') || github.event.label.name == 'review' }}
needs: [ buildImage ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Azure login
uses: azure/[email protected]
Expand Down

0 comments on commit ac81cff

Please sign in to comment.