Skip to content
Open
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/code-transformations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
Expand All @@ -20,7 +20,7 @@
# commits back that point is.
fetch-depth: 0

- name: Run refactoring

Check failure on line 23 in .github/workflows/code-transformations.yml

View workflow job for this annotation

GitHub Actions / PR formatting / whitespace

Trailing spaces

Remove the trailing spaces at the end of the line.
id: run_refactoring
env:
ALIBUILD_GITHUB_TOKEN: ${{secrets.ALIBUILD_GITHUB_TOKEN}}
Expand Down Expand Up @@ -68,7 +68,7 @@
destination_branch: '${{ github.event.pull_request.head.label }}'
github_token: ${{ secrets.ALIBUILD_GITHUB_TOKEN }}
pr_title: "Please consider the refactoring changes to AliceO2Group/AliceO2#${{ github.event.pull_request.number }}"
pr_body: |

Check failure on line 71 in .github/workflows/code-transformations.yml

View workflow job for this annotation

GitHub Actions / PR formatting / whitespace

Trailing spaces

Remove the trailing spaces at the end of the line.
AliceO2Group/AliceO2#${{ github.event.pull_request.number }}" cannot be merged as is.
You should either modify your code according to what is done in this PR, or directly merge this PR in yours.
The rationale for this change is:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/datamodel-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ jobs:
steps:

- name: Checkout O2
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: O2
persist-credentials: false

- name: Checkout O2Physics
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: AliceO2Group/O2Physics
path: O2Physics
persist-credentials: false

- name: Checkout documentation
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: AliceO2Group/analysis-framework
path: analysis-framework
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

on:
push:
branches:

Check failure on line 5 in .github/workflows/doxygen.yml

View workflow job for this annotation

GitHub Actions / PR formatting / whitespace

Trailing spaces

Remove the trailing spaces at the end of the line.
- 'dev'
workflow_dispatch:
jobs:
Expand All @@ -13,7 +13,7 @@
run: |
sudo apt-get update -y
sudo apt-get install -y doxygen doxygen-doc doxygen-latex doxygen-gui graphviz cmake
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: "dev"
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
branch=$(echo ${{ github.event.inputs.tag }}-patches | tr . - | sed -e's/-[0-9]*-patches$/-patches/')
EOF
id: decide_release_branch
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: "dev"
- name: Tag branch (or create one before tagging if does not exists)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: github.repository == 'AliceO2Group/AliceO2'

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
Expand Down
Loading