Skip to content

Commit

Permalink
Merge pull request #1079 from CEED/jeremy/rust-actions
Browse files Browse the repository at this point in the history
Update action versions
  • Loading branch information
jeremylt authored Oct 26, 2022
2 parents c4dd771 + 42e6192 commit 8e763b3
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/c-fortran-test-hardware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Environment setup
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Hardware setup and test libCEED
uses: uraimo/run-on-arch-action@v2
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/c-fortran-test-icc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Clone Intel install scripts
run: |
git clone https://github.com/oneapi-src/oneapi-ci.git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/c-fortran-test-linux-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Environment setup
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Build and test libCEED
env:
CC: ${{ matrix.compiler }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/c-fortran-test-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Environment setup
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install astyle
run: sudo apt-get install astyle
- name: C style
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/julia-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@latest
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/julia-test-with-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Environment setup
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Julia setup
uses: julia-actions/setup-julia@latest
with:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/python-test-with-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ jobs:
matrix:
os: [ubuntu-22.04]
compiler: [gcc-11]
python-version: ['3.x']

runs-on: ${{ matrix.os }}

steps:
- name: Environment setup
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Python setup
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Python dependencies
run: |
pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Environment setup
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check release notes
run: |
git fetch origin main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:

steps:
- name: Environment setup
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Rust setup
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- name: Build documentation
Expand Down

0 comments on commit 8e763b3

Please sign in to comment.