Skip to content

Commit

Permalink
CI: bump actions/upload-artifact and actions/checkout to v4 (#526)
Browse files Browse the repository at this point in the history
Older versions were deprecated.

Signed-off-by: George Melikov <[email protected]>
  • Loading branch information
gmelikov authored Sep 29, 2024
1 parent 659aa86 commit 9ac354f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Prepare
run: |
sudo apt-get update -y
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Prepare
run: |
sudo apt-get update -y
Expand All @@ -20,7 +20,7 @@ jobs:
uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: DocumentationHTML
path: docs/_build/html/
4 changes: 2 additions & 2 deletions .github/workflows/test_zfs_root_guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install shellcheck
run: |
sudo apt install --yes shellcheck
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Test RHEL guide
run: |
sudo ./scripts/zfs_root_guide_test.sh rhel
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: installation-scripts
path: |
Expand Down

0 comments on commit 9ac354f

Please sign in to comment.