Skip to content

Commit

Permalink
Fix GitHub actions deprecation warning notices (#4994)
Browse files Browse the repository at this point in the history
This should fix the GitHub actions deprecation warning notices that are shown on the GitHub actions summary page.

Signed-off-by: Bernhard Kaindl <[email protected]>
  • Loading branch information
bernhardkaindl authored May 9, 2024
1 parent 3960539 commit aa5ae41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/bcc-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
PYTHON_TEST_LOGFILE: critical.log
RW_ENGINE_ENABLED: ON
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
Expand Down Expand Up @@ -120,10 +120,11 @@ jobs:
echo "There were $critical_count critical tests skipped with @mayFail:"
grep -A2 @mayFail tests/python/critical.log
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: critical-tests-${{ matrix.env['TYPE'] }}-${{ matrix.os.version }}
path: tests/python/critical.log
overwrite: true

test_bcc_fedora:
runs-on: ubuntu-20.04
Expand All @@ -136,8 +137,8 @@ jobs:
- TYPE: Release
PYTHON_TEST_LOGFILE: critical.log
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Build and push
uses: ./.github/actions/build-container
Expand Down

0 comments on commit aa5ae41

Please sign in to comment.