Skip to content

Commit

Permalink
[CI] Use newer versions of some GitHub actions (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano authored Jan 13, 2023
1 parent 4f97571 commit 1a0bee6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
docs-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
shell: julia --color=yes --project=docs/ {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PreviewCleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout gh-pages branch
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: gh-pages
- name: Delete preview and history + push changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ShellCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt install shellcheck
- name: Check scripts
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/UnitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- uses: julia-actions/setup-julia@latest
with:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- uses: julia-actions/setup-julia@latest
with:
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- name: Install MPI via homebrew
run: brew install $MPI
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- name: Install MPI via apt
run: |
Expand Down Expand Up @@ -232,11 +232,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- name: Cache Intel MPI
id: cache-intelmpi
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: l_mpi_2019.9.304.tgz
key: ${{ runner.os }}-intelmpi-2019.9.304
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- name: Download Microsoft MPI
run: (new-object net.webclient).DownloadFile("https://download.microsoft.com/download/a/5/2/a5207ca5-1203-491a-8fb8-906fd68ae623/msmpisetup.exe", "msmpisetup.exe")
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- uses: julia-actions/setup-julia@latest
with:
Expand Down Expand Up @@ -482,7 +482,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- name: Install MPI via apt
run: |
Expand Down Expand Up @@ -549,11 +549,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2.2.0
uses: actions/checkout@v3

- name: Cache Intel MPI
id: cache-intelmpi
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: l_mpi_2019.9.304.tgz
key: ${{ runner.os }}-intelmpi-2019.9.304
Expand Down Expand Up @@ -600,7 +600,7 @@ jobs:

# https://discourse.julialang.org/t/recommendation-cache-julia-artifacts-in-ci-services/35484
- name: Cache artifacts
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
Expand Down

0 comments on commit 1a0bee6

Please sign in to comment.