Skip to content

Commit

Permalink
Merge pull request #1988 from kshtsk/wip-github-checkout-v4
Browse files Browse the repository at this point in the history
workflows: use latest checkout and setup-python actions
  • Loading branch information
zmc authored Aug 2, 2024
2 parents 7d7f5fe + c27a3b8 commit 4bc527c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
- os: ubuntu-24.04
python: "3.12"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Add deadsnakes PPA
if: matrix.os == 'ubuntu-20.04'
run: sudo add-apt-repository --yes ppa:deadsnakes/ppa
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
if: matrix.os == 'ubuntu-20.04'
run: sudo add-apt-repository --yes ppa:deadsnakes/ppa
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Checkout default branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
path: teuthology
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Move initial repository
run: mv teuthology teuthology.orig
- name: Checkout desired ref
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: teuthology
- name: Move virtualenv to new checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test using docker-compose
run: ./start.sh
working-directory: ./docs/docker-compose

0 comments on commit 4bc527c

Please sign in to comment.