Skip to content
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
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.2.2
uses: actions/checkout@v5

- name: Cleanup PR caches
if: github.event_name != 'workflow_dispatch'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:

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

- name: Build matrix for remote testing
uses: ./.github/actions/build-matrix
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5

- name: Build matrix for local, minimal and console testing
uses: ./.github/actions/build-matrix
Expand Down Expand Up @@ -317,7 +317,7 @@ jobs:
ON_LOCAL: TRUE

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5

- uses: ./.github/actions/test_windows
with:
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5

- name: "Run Julia testing"
uses: ./.github/actions/test-julia
Expand All @@ -445,7 +445,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5

- name: "Run Pytest-summary action"
uses: ./.github/actions/pytest-summary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

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

- name: "Login in Github container registry"
uses: docker/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Syncer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5
- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/migrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ jobs:

- name: Checkout repo
if : ${{ env.CONTINUE == 'true'}}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
df -h

- name: "Install Git and checkout project"
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5
with:
repository: ansys/pymapdl

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
df -h

- name: "Install Git and checkout project"
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5

- name: "Login in Github container registry"
uses: docker/[email protected]
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/4199.maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump actions/checkout from 4 to 5 in the actions group
Loading