Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gha,ci: update checkout to v4 #3789

Merged
merged 1 commit into from
Sep 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/workflows/everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
outputs:
num_code_changes: ${{ steps.get_code_changes.outputs.num_code_changes }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check for appropriately named topic branch
Expand Down Expand Up @@ -80,10 +80,10 @@ jobs:
image: ghcr.io/ornladios/adios2:ci-formatting

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: gha
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
path: source
Expand Down Expand Up @@ -153,10 +153,10 @@ jobs:
shared: static
parallel: serial
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: gha
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
path: source
Expand Down Expand Up @@ -218,10 +218,10 @@ jobs:
parallel: [ompi]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: gha
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
path: source
Expand Down Expand Up @@ -285,10 +285,10 @@ jobs:
compiler: xcode13_4_1

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: gha
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
path: source
Expand Down Expand Up @@ -352,10 +352,10 @@ jobs:
shell: bash

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: gha
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
path: source
Expand Down Expand Up @@ -386,7 +386,7 @@ jobs:
baseos: [ubuntu-bionic]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
path: ci-source
Expand Down Expand Up @@ -465,7 +465,7 @@ jobs:
shell: bash -c "docker exec adios2-ci bash --login -e $(echo {0} | sed 's|/home/runner/work|/__w|g')"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: ${{ matrix.repo }}
ref: ${{ matrix.ref }}
Expand Down Expand Up @@ -523,10 +523,10 @@ jobs:
language: [ 'cpp' ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: gha
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
path: source
Expand Down
Loading