Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#2565)
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]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 29, 2023
1 parent e67f1f2 commit 4255d81
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

steps:
- name: Checkout event ref
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event_name != 'schedule'

- name: Checkout develop branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: develop
if: github.event_name == 'schedule'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
DISABLE_CXX_SHARED: 'true'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
if: github.event_name != 'schedule'

- name: Checkout develop branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
ref: develop
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compress-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: calibreapp/image-actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Compress Images
id: calibre
uses: calibreapp/image-actions@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
# Needed to get the checklist template
- name: Checkout release checklist template
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create issue
env:
GH_TOKEN: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Docker meta data
id: meta
uses: docker/metadata-action@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
mingw-w64-${{matrix.env}}-zeromq
mingw-w64-${{matrix.env}}-boost
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
if: github.event_name != 'schedule'

- name: Checkout develop branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
ref: develop
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
echo "::set-output name=DEPTH::${DEPTH}"
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.determine_fd.outputs.DEPTH }}
if: github.event.action == 'published' || github.event_name == 'workflow_dispatch'
Expand Down Expand Up @@ -97,13 +97,13 @@ jobs:
echo "::set-output name=DEPTH::${DEPTH}"
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.determine_fd.outputs.DEPTH }}
if: github.event_name != 'schedule'

- name: Checkout develop branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: develop
if: github.event_name == 'schedule'
Expand Down Expand Up @@ -184,13 +184,13 @@ jobs:
echo "::set-output name=DEPTH::${DEPTH}"
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.determine_fd.outputs.DEPTH }}
if: github.event_name != 'schedule'

- name: Checkout develop branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: develop
if: github.event_name == 'schedule'
Expand Down Expand Up @@ -283,13 +283,13 @@ jobs:
echo "::set-output name=DEPTH::${DEPTH}"
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.determine_fd.outputs.DEPTH }}
if: github.event_name != 'schedule'

- name: Checkout develop branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: develop
if: github.event_name == 'schedule'
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.action == 'published'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get all submodules archive
uses: actions/download-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analyzers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
container: helics/buildenv:cpplint

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run cpplint
run: cpplint --counting=detailed --recursive examples benchmarks src tests

Expand All @@ -29,7 +29,7 @@ jobs:
container: helics/buildenv:clang-extra-tools

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run clang-tidy on changed files
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swig-interface-gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

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

Expand Down

0 comments on commit 4255d81

Please sign in to comment.