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

Bump actions/checkout from 2 to 4 #820

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: cmake --version

- name: Checkout cbdr
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: MFraters/cbdr
ref: github_actions_fix
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
key: ${{ runner.os }}-gwb-feature-${{ github.event.number }}-v3}}

- name: Checkout cbdr
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: MFraters/cbdr
ref: github_actions_fix
Expand All @@ -102,13 +102,13 @@ jobs:


- name: Checkout feature
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: feature/source
clean: false

- name: Checkout main
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: main
path: main/source
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Use cmake
run: cmake --version

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

- name: Install astyle
shell: bash
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install optional dependencies
run: |
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

# python in combination with cmake seems to be broken on github actions windows
# todo: fix it
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install optional dependencies
run: |
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
coverage:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install optional dependencies
run: sudo apt install gfortran swig python3-setuptools openmpi-bin libopenmpi-dev
Expand Down Expand Up @@ -348,7 +348,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install optional dependencies
run: |
Expand Down Expand Up @@ -408,7 +408,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install optional dependencies
run: |
Expand Down Expand Up @@ -467,7 +467,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install optional dependencies
run: |
Expand Down Expand Up @@ -528,7 +528,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install optional dependencies
run: |
Expand Down Expand Up @@ -589,7 +589,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install optional dependencies
run: |
Expand Down Expand Up @@ -647,7 +647,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install optional dependencies
run: |
Expand Down
Loading