From f19b0215384f248b7916f26cf4fc12ce99b2e721 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Wed, 6 Nov 2024 10:29:43 -0500 Subject: [PATCH] Update GitHub Actions Soon, GitHub will deprecate the upload-artifacts v3 action: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ This PR updates the action to the latest version, v4. It also updates the checkout action to the latest version, v4, as well. --- .github/workflows/validate_yaml_files.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate_yaml_files.yml b/.github/workflows/validate_yaml_files.yml index 86df2bb..449db6e 100644 --- a/.github/workflows/validate_yaml_files.yml +++ b/.github/workflows/validate_yaml_files.yml @@ -15,7 +15,7 @@ jobs: validate-YAML: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - id: yaml-lint name: yaml-lint uses: ibiqlik/action-yamllint@v3 @@ -24,7 +24,7 @@ jobs: format: colored config_file: .yamllint.yml - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: yamllint-logfile