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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
name: Python ${{ matrix.python-version }} unit tests
steps:
- name: checkout code tree
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

- name: Setup python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand Down Expand Up @@ -108,11 +108,11 @@ jobs:
needs: pytest
steps:
- name: checkout code tree
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

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

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

- name: checkout code tree
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
ref: ${{github.event.inputs.ref}}
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 @@ -42,7 +42,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout code tree
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.9"
architecture: "x64"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout code tree
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.9"
architecture: "x64"
Expand Down Expand Up @@ -120,9 +120,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout code tree
uses: actions/checkout@v4
uses: actions/checkout@v5

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.9"
architecture: "x64"
Expand All @@ -134,5 +134,5 @@ jobs:
name: Run REUSE to check license compliance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: fsfe/reuse-action@v5
8 changes: 4 additions & 4 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:

steps:
- name: checkout code tree
uses: actions/checkout@v2
uses: actions/checkout@v5
with:
fetch-depth: 0

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

- name: Archive logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test-log
path: pytest.log
Expand All @@ -44,15 +44,15 @@ jobs:

steps:
- name: checkout code tree
uses: actions/checkout@v2
uses: actions/checkout@v5
with:
fetch-depth: 0

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

- name: Archive logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test-log
path: pytest.log
Expand Down
Loading