Skip to content

Commit

Permalink
.github/workflows/ci.yml: try updating actions from v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcdonell committed Feb 23, 2024
1 parent a9ef65f commit 03bcf9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# - {platform: centos7-container, os: ubuntu-20.04, experimental: false}
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Fix local hostname DNS lookup
run: echo 127.0.1.1 $(hostname --fqdn) $(hostname) | sudo tee -a /etc/hosts
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# always() is required here to run this step even if the build fails
# otherwise the platform will be skipped in the test report (it should be flagged as broken)
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.platform }}
path: artifacts/build
Expand All @@ -94,7 +94,7 @@ jobs:

- name: Upload test results
if: always() && steps.init_qa.outcome == 'success'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-${{ matrix.platform }}
path: artifacts/test
Expand Down

0 comments on commit 03bcf9c

Please sign in to comment.