Skip to content

Commit 334a59e

Browse files
committed
fix: bump actions versions
1 parent 66a615f commit 334a59e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/codestyle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ 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
@@ -25,8 +25,8 @@ jobs:
2525
shell: bash -l {0}
2626

2727
steps:
28-
- uses: actions/checkout@v4
29-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v5
3030
with:
3131
repository: DIRACGrid/DIRAC
3232
path: .DIRAC

.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)