From b547d74e90ef4c0e40838e67f4ddd71e51309783 Mon Sep 17 00:00:00 2001 From: Kyle Taylor Date: Fri, 19 Jan 2024 11:27:22 -0600 Subject: [PATCH] Fix checkout/artifact versions --- .github/workflows/php-lint.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/php-lint.yml b/.github/workflows/php-lint.yml index b4078e1..d76a0a9 100644 --- a/.github/workflows/php-lint.yml +++ b/.github/workflows/php-lint.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 725ef97..c8d44ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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