Skip to content

Commit

Permalink
Testing: Upgrade to actions/checkout@v3 (node12 is deprecated) #5522
Browse files Browse the repository at this point in the history
  • Loading branch information
rdimaio authored and bari12 committed Jan 17, 2024
1 parent a9b90c9 commit 571895f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/autotest.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Add header lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# We need the history to determine the file creation date.
fetch-depth: 0
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
if: github.repository_owner == 'rucio' || github.event_name != 'schedule'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Update pip
run: python3 -m pip install -U pip setuptools
- name: Install python requirements for matrix_parser.py
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
matrix:
cfg: ${{ fromJson(needs.setup.outputs.matrix) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build images
id: images
shell: bash
Expand All @@ -176,7 +176,7 @@ jobs:
&& (github.repository_owner == 'rucio' || github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Update pip
run: python3 -m pip install -U pip setuptools
- name: Install python requirements for matrix_parser.py
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
matrix:
cfg: ${{ fromJson(needs.release-patch-setup.outputs.matrix) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Update pip
run: python3 -m pip install -U pip setuptools
- name: Install python requirements for mergetest.py
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/imagecache.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Identify branches
id: branches
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
matrix:
branch: ${{ fromJson(needs.setup.outputs.branches) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ matrix.branch }}
- name: Check and get files
Expand Down Expand Up @@ -93,11 +93,11 @@ jobs:
branch: ${{ fromJson(needs.setup.outputs.branches) }}
steps:
- name: Checkout rucio containers repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: rucio/containers
- name: Checkout rucio source
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: dev/rucio
ref: ${{ matrix.branch }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration_tests.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Update pip
run: python3 -m pip install -U pip setuptools
- name: Install python requirements for matrix_parser.py
Expand All @@ -32,11 +32,11 @@ jobs:
cfg: ${{ fromJson(needs.setup.outputs.matrix) }}
steps:
- name: Checkout rucio containers repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: rucio/containers
fetch-depth: 0
- uses: actions/checkout@v2
- uses: actions/checkout@v3
name: Checkout rucio source
with:
path: dev/rucio
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vo_tests.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Update pip
run: python3 -m pip install -U pip setuptools
- name: Install python requirements for matrix_parser.py
Expand All @@ -31,7 +31,7 @@ jobs:
matrix:
cfg: ${{ fromJson(needs.setup.outputs.matrix) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build Images and Run Tests
uses: ./.github/actions/build-images-and-run-tests
with:
Expand Down

0 comments on commit 571895f

Please sign in to comment.