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 Sep 5, 2023
1 parent ec058cb commit 2854097
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/amend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/amend')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: amend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/apt-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: apt-get update
- run: apt-get install -y git jq

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: update apt.json
run: .github/scripts/apt_update.sh --file .docker/apt.json
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
docker_image_fqn: ${{ steps.variables.outputs.docker_image_fqn }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -47,10 +47,10 @@ jobs:
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]') ||
(github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ github.event_name != 'pull_request_target' }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ github.event_name == 'pull_request_target' }}
with:
ref: ${{ github.event.pull_request.head.sha }}
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
needs: [docker-publish, variables]

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

- name: Download and Run Image
run: |
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
ghpr_docker_image_tag: ${{ steps.variables.outputs.docker_image_tag }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: gittools/actions/gitversion/setup@v0.10.2
Expand All @@ -33,7 +33,7 @@ jobs:
hadolint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: haya14busa/action-cond@v1
id: reporter
with:
Expand All @@ -49,7 +49,7 @@ jobs:
verify-bash:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: ShellCheck
uses: bewuethr/shellcheck-action@v2
- name: Control Character Check
Expand All @@ -64,9 +64,9 @@ jobs:
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]') ||
(github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ github.event_name != 'pull_request_target' }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ github.event_name == 'pull_request_target' }}
with:
ref: ${{ github.event.pull_request.head.sha }}
Expand All @@ -87,7 +87,7 @@ jobs:
runs-on: ubuntu-latest
needs: [variables, docker-build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Docker Image (serve)
run: |
timeout --preserve-status 10m \
Expand All @@ -104,7 +104,7 @@ jobs:
runs-on: ubuntu-latest
needs: [variables, docker-build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Docker Image (serve, no Gemfile)
run: |
timeout --preserve-status 10m \
Expand All @@ -121,7 +121,7 @@ jobs:
runs-on: ubuntu-latest
needs: [variables, docker-build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Docker Image (build)
run: |
./.github/scripts/docker_run_test.sh \
Expand All @@ -137,7 +137,7 @@ jobs:
runs-on: ubuntu-latest
needs: [variables, docker-build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Docker Image (build, no Gemfile)
run: |
./.github/scripts/docker_run_test.sh \
Expand All @@ -154,7 +154,7 @@ jobs:
needs: [variables, docker-build]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Docker Image (build with gemspec)
run: |
./.github/scripts/docker_run_test.sh \
Expand All @@ -175,7 +175,7 @@ jobs:
working-directory: ${{ env.working-directory }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
Expand All @@ -191,7 +191,7 @@ jobs:
runs-on: ubuntu-latest
needs: [variables, docker-build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
needs: [variables, docker-build]

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

- name: Test Deploy
env:
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
needs: [test-deploy, variables]
if: always()
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cleanup
if: always()
run: .github/scripts/cleanup.sh --branch ${{ needs.variables.outputs.deploy_branch }} --commit ${{ github.sha }} --remote --verbose

0 comments on commit 2854097

Please sign in to comment.