Skip to content

Commit

Permalink
updated dependent actions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
0815Creeper committed Aug 12, 2024
1 parent 543c864 commit 871eade
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Check out repository"
uses: actions/checkout@v3
uses: actions/checkout@latest
with:
ref: ''

- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@latest
with:
version: '1' # 1.6
arch: x64
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/Eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@latest

# Set up Julia
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
id: version

# Set up cache
- name: "Set up cache"
uses: actions/cache@v2
uses: actions/cache@latest
env:
cache-name: cache-artifacts
with:
Expand All @@ -45,7 +45,7 @@ jobs:
# Build package
- name: "Build package"
uses: julia-actions/julia-buildpkg@v1
uses: julia-actions/julia-buildpkg@latest

# Run PkgEval
- name: "Run PkgEval"
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/Example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:

steps:
- name: "Check out repository"
uses: actions/checkout@v3
uses: actions/checkout@latest

- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Archive examples artifacts (success)
if: success() && matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@latest
with:
name: jupyter-examples
path: examples/jupyter-src/${{ matrix.file-name }}*
Expand All @@ -69,10 +69,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Check out repository"
uses: actions/checkout@v3
uses: actions/checkout@latest

- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@latest
with:
version: '1.10'

Expand All @@ -81,7 +81,7 @@ jobs:

- name: Archive examples artifacts (success)
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@latest
with:
name: pluto-examples
path: examples/pluto-src/*
Expand All @@ -91,19 +91,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download jupyter examples
uses: actions/download-artifact@v3
uses: actions/download-artifact@latest
with:
name: jupyter-examples
path: examples/jupyter-src/

- name: Download pluto examples
uses: actions/download-artifact@v3
uses: actions/download-artifact@latest
with:
name: pluto-examples
path: examples/pluto-src/

- name: Check if the example files generated are valid (if jupyter-examples failed, svgs are missing; jupyter command does not fail even if examples fail)
uses: andstor/file-existence-action@v3
uses: andstor/file-existence-action@latest
with:
files: "examples/jupyter-src/*/*.svg"
fail: true
Expand All @@ -114,16 +114,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@latest

- name: Download jupyter examples
uses: actions/download-artifact@v3
uses: actions/download-artifact@latest
with:
name: jupyter-examples
path: examples/jupyter-src/

- name: Download pluto examples
uses: actions/download-artifact@v3
uses: actions/download-artifact@latest
with:
name: pluto-examples
path: examples/pluto-src/
Expand Down Expand Up @@ -160,6 +160,6 @@ jobs:
steps:
# Trigger an repoisitory dispath event
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@latest
with:
event-type: trigger-docu
2 changes: 1 addition & 1 deletion .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
- uses: JuliaRegistries/TagBot@latest
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
14 changes: 7 additions & 7 deletions .github/workflows/TestLTS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:
steps:
# Checks-out your repository
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@latest

# Set up Julia
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}

# Set up cache
- name: "Set up cache"
uses: actions/cache@v3
uses: actions/cache@latest
env:
cache-name: cache-artifacts
with:
Expand All @@ -50,18 +50,18 @@ jobs:
# Build package
- name: "Build package"
uses: julia-actions/julia-buildpkg@v1
uses: julia-actions/julia-buildpkg@latest

# Run the tests
- name: "Run tests"
uses: julia-actions/julia-runtest@v1
uses: julia-actions/julia-runtest@latest

# Preprocess Coverage
- name: "Preprocess Coverage"
uses: julia-actions/julia-processcoverage@v1
uses: julia-actions/julia-processcoverage@latest

# Run codecov
- name: "Run CodeCov"
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@latest
with:
file: lcov.info
14 changes: 7 additions & 7 deletions .github/workflows/TestLatest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:
steps:
# Checks-out your repository
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@latest

# Set up Julia
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}

# Set up cache
- name: "Set up cache"
uses: actions/cache@v3
uses: actions/cache@latest
env:
cache-name: cache-artifacts
with:
Expand All @@ -50,18 +50,18 @@ jobs:
# Build package
- name: "Build package"
uses: julia-actions/julia-buildpkg@v1
uses: julia-actions/julia-buildpkg@latest

# Run the tests
- name: "Run tests"
uses: julia-actions/julia-runtest@v1
uses: julia-actions/julia-runtest@latest

# Preprocess Coverage
- name: "Preprocess Coverage"
uses: julia-actions/julia-processcoverage@v1
uses: julia-actions/julia-processcoverage@latest

# Run codecov
- name: "Run CodeCov"
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@latest
with:
file: lcov.info

0 comments on commit 871eade

Please sign in to comment.