Skip to content

Commit

Permalink
Fix some more action deprecation warnings (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Feb 9, 2024
1 parent c81f154 commit 37cff7a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ jobs:
shell: bash

- name: Download JUnit HTML report as artifact ⤵️
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: unit-test-report
path: unit-test-report
Expand Down Expand Up @@ -843,7 +843,7 @@ jobs:
shell: bash

- name: Download artifact ⏬
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.PKGBUILD }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ jobs:
uses: actions/checkout@v4

- name: Download artifact ⏬
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pkgdown.zip

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ jobs:
shell: bash

- name: Download coverage report as artifact ⤵️
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-report
path: coverage-report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
uses: actions/checkout@v4

- name: Download artifact ⏬
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: validation_report.pdf

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:

- name: Commit and push changes 📌
if: ${{ env.NEW_PKG_VERSION }}
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[skip actions] Bump version to ${{ env.NEW_PKG_VERSION }}"
file_pattern: "${{ steps.file-pattern.outputs.file-pattern }}"
Expand Down

0 comments on commit 37cff7a

Please sign in to comment.