Skip to content

Commit 7545efb

Browse files
committed
Updated versions of used GH actions
1 parent 6acf200 commit 7545efb

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
name: Python ${{ matrix.python-version }} unit tests
3232
steps:
3333
- name: checkout code tree
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737

3838
- name: Setup python
39-
uses: actions/setup-python@v5
39+
uses: actions/setup-python@v6
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
architecture: x64
@@ -108,11 +108,11 @@ jobs:
108108
needs: pytest
109109
steps:
110110
- name: checkout code tree
111-
uses: actions/checkout@v4
111+
uses: actions/checkout@v5
112112
with:
113113
fetch-depth: 0
114114

115-
- uses: actions/setup-python@v5
115+
- uses: actions/setup-python@v6
116116
with:
117117
python-version: "3.9"
118118
architecture: "x64"
@@ -180,7 +180,7 @@ jobs:
180180
run: echo "::set-output name=reftag::${GITHUB_BASE_REF:+PR}"$(awk -F"/" '{print $3}' <<< ${GITHUB_REF})
181181

182182
- name: checkout code tree
183-
uses: actions/checkout@v4
183+
uses: actions/checkout@v5
184184
with:
185185
fetch-depth: 0
186186
ref: ${{github.event.inputs.ref}}
@@ -219,7 +219,7 @@ jobs:
219219
run: echo "::set-output name=reftag::${GITHUB_BASE_REF:+PR}"$(awk -F"/" '{print $3}' <<< ${GITHUB_REF})
220220

221221
- name: checkout code tree
222-
uses: actions/checkout@v4
222+
uses: actions/checkout@v5
223223
with:
224224
fetch-depth: 0
225225
ref: ${{github.event.inputs.ref}}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v5
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL

.github/workflows/gh-pages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: checkout code tree
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222

23-
- uses: actions/setup-python@v5
23+
- uses: actions/setup-python@v6
2424
with:
2525
python-version: "3.9"
2626
architecture: "x64"

.github/workflows/linters.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: checkout code tree
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525

26-
- uses: actions/setup-python@v5
26+
- uses: actions/setup-python@v6
2727
with:
2828
python-version: "3.9"
2929
architecture: "x64"
@@ -120,9 +120,9 @@ jobs:
120120
runs-on: ubuntu-latest
121121
steps:
122122
- name: checkout code tree
123-
uses: actions/checkout@v4
123+
uses: actions/checkout@v5
124124

125-
- uses: actions/setup-python@v5
125+
- uses: actions/setup-python@v6
126126
with:
127127
python-version: "3.9"
128128
architecture: "x64"
@@ -134,5 +134,5 @@ jobs:
134134
name: Run REUSE to check license compliance
135135
runs-on: ubuntu-latest
136136
steps:
137-
- uses: actions/checkout@v4
137+
- uses: actions/checkout@v5
138138
- uses: fsfe/reuse-action@v5

.github/workflows/pytest.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222

2323
steps:
2424
- name: checkout code tree
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828

2929
- name: Run the tests in a container (SL7/HEPCloud-CI)
3030
uses: ./.github/actions/python-command-in-sl7-container
3131

3232
- name: Archive logs
33-
uses: actions/upload-artifact@v2
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: test-log
3636
path: pytest.log
@@ -44,15 +44,15 @@ jobs:
4444

4545
steps:
4646
- name: checkout code tree
47-
uses: actions/checkout@v2
47+
uses: actions/checkout@v5
4848
with:
4949
fetch-depth: 0
5050

5151
- name: Run the tests in a container (EL8/HEPCloud-CI)
5252
uses: ./.github/actions/python-command-in-el8-container
5353

5454
- name: Archive logs
55-
uses: actions/upload-artifact@v2
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: test-log
5858
path: pytest.log

0 commit comments

Comments
 (0)