Skip to content

Commit

Permalink
Fix checkout/artifact versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Taylor committed Jan 19, 2024
1 parent 3bbb805 commit b547d74
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
php: ["7.4", "8.1", "8.2"]

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v4.1.1

- name: Set up PHP
uses: shivammathur/setup-php@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1

- name: Build Release
run: |
zip -r custom-file-organizer-${GITHUB_REF#refs/tags/}.zip . -x "*.git*"
- name: Upload Release Artifact
uses: actions/upload-artifact@v2
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.2.0
with:
name: custom-file-organizer
path: custom-file-organizer-${GITHUB_REF#refs/tags/}.zip

0 comments on commit b547d74

Please sign in to comment.