Skip to content

Commit

Permalink
Merge branch 'main' into fix/start-instance-argument-being-silently-o…
Browse files Browse the repository at this point in the history
…verwritting
  • Loading branch information
clatapie authored Mar 19, 2024
2 parents e0f1305 + 34e29c7 commit 4c5f480
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cache_cleaner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v4.1.2

- name: Cleanup PR caches
if: github.event_name != 'workflow_dispatch'
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ jobs:
ON_DOCUMENTATION: TRUE
steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v4
uses: actions/checkout@v4.1.2

- name: "Login in Github container registry"
uses: docker/login-action@v3.0.0
uses: docker/login-action@v3.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -320,10 +320,10 @@ jobs:

steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v4
uses: actions/checkout@v4.1.2

- name: "Login in Github container registry"
uses: docker/login-action@v3.0.0
uses: docker/login-action@v3.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -505,7 +505,7 @@ jobs:

steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v4
uses: actions/checkout@v4.1.2
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
Expand Down Expand Up @@ -629,7 +629,7 @@ jobs:

steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v4
uses: actions/checkout@v4.1.2
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
Expand Down Expand Up @@ -700,7 +700,7 @@ jobs:
ON_LOCAL: TRUE

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.2

# Skipping because it is installed locally.
# - name: Setup Python
Expand Down Expand Up @@ -826,7 +826,7 @@ jobs:
needs: upload-docs-release
steps:
- name: "Install Git and clone project"
uses: actions/checkout@v4
uses: actions/checkout@v4.1.2

- name: "Install the package requirements"
run: pip install -e .
Expand Down Expand Up @@ -899,7 +899,7 @@ jobs:
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v1.0.0
- uses: actions/checkout@v4.1.2
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Syncer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.2
- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linkchecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
SHELLOPTS: "errexit:pipefail"
steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v4
uses: actions/checkout@v4.1.2

- name: "Setup Python"
uses: actions/setup-python@v5
Expand All @@ -54,7 +54,7 @@ jobs:
xvfb-run python -c "from ansys.mapdl import core as pymapdl; print(pymapdl.Report())"
- name: "Login in Github container registry"
uses: docker/login-action@v3.0.0
uses: docker/login-action@v3.1.0
with:
registry: ghcr.io
username: ${{ secrets.GH_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repos:
)
- repo: https://github.com/psf/black
rev: 24.2.0 # If version changes --> modify "blacken-docs" manually as well.
rev: 24.3.0 # If version changes --> modify "blacken-docs" manually as well.
hooks:
- id: black
args:
Expand All @@ -36,7 +36,7 @@ repos:
rev: 1.16.0
hooks:
- id: blacken-docs
additional_dependencies: [black==24.2.0]
additional_dependencies: [black==24.3.0]

- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
Expand Down

0 comments on commit 4c5f480

Please sign in to comment.