Skip to content

Commit 9969ce6

Browse files
authored
Merge pull request #788 from fstagni/60_bumps
fix: bump actions versions
2 parents 66a615f + 7bc3a54 commit 9969ce6

File tree

5 files changed

+7
-35
lines changed

5 files changed

+7
-35
lines changed

.github/workflows/codestyle.yml

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -7,39 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
if: github.event_name != 'push' || github.repository == 'DIRACGrid/WebAppDIRAC'
99
steps:
10-
- uses: actions/checkout@v4
11-
- uses: actions/setup-python@v5
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-python@v6
1212
with:
1313
python-version: "3.11"
1414
- name: Install pre-commit
1515
run: pip install pre-commit
1616
- name: Run pre-commit
1717
run: pre-commit run --all-files --show-diff-on-failure
18-
19-
pyLint:
20-
runs-on: ubuntu-latest
21-
if: github.event_name != 'push' || github.repository == 'DIRACGrid/WebAppDIRAC'
22-
defaults:
23-
# Activate the conda environment automatically in each step
24-
run:
25-
shell: bash -l {0}
26-
27-
steps:
28-
- uses: actions/checkout@v4
29-
- uses: actions/checkout@v4
30-
with:
31-
repository: DIRACGrid/DIRAC
32-
path: .DIRAC
33-
ref: integration
34-
35-
- name: Get DIRAC
36-
run: |
37-
[ ! -d "DIRAC" ] && cp -r .DIRAC/src/DIRAC DIRAC
38-
39-
- name: Prepare environment with Micromamba
40-
uses: mamba-org/setup-micromamba@v2
41-
with:
42-
environment-file: .DIRAC/environment.yml
43-
44-
- name: Run tests
45-
run: pylint -E src/WebAppDIRAC

.github/workflows/deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
run:
2222
shell: bash -l {0}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
token: ${{ secrets.PAT || github.token }}
2727
- run: |
2828
git fetch --prune --unshallow
2929
git config --global user.email "ci@diracgrid.org"
3030
git config --global user.name "DIRACGrid CI"
3131
git clone https://github.com/DIRACGrid/DIRAC.git ../DIRAC
32-
- uses: actions/setup-python@v5
32+
- uses: actions/setup-python@v6
3333
with:
3434
python-version: "3.11"
3535
- name: Installing dependencies

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ jobs:
66
triage:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/labeler@v4
9+
- uses: actions/labeler@v6
1010
with:
1111
repo-token: "${{ secrets.PAT }}"

.github/workflows/pr-sweep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
concurrency: pr-sweep
1010
if: github.repository == 'DIRACGrid/WebAppDIRAC'
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
token: ${{ secrets.PAT }}

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ where=src
4141
[options.extras_require]
4242
server =
4343
# These dependecies are made optional to make it easier to build extensions
44-
dirac ~=9.0.0a0
44+
dirac[server] ~=9.0.0
4545
DIRACWebAppResources ~=1.0
4646
testing =
4747
autopep8 ==1.3.3

0 commit comments

Comments
 (0)