Skip to content

Commit

Permalink
Merge pull request #146 from adrianreber/2024-10-16-versions
Browse files Browse the repository at this point in the history
Upgrade GitHub Actions versions to remove deprecation warnings
  • Loading branch information
snprajwal authored Oct 16, 2024
2 parents 9ba0567 + f5dc7ad commit 180c7b5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Check if pull request does not have label "bloat-ok".
if: "!contains(github.event.pull_request.labels.*.name, 'bloat-ok')"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Needed to rebase against the base branch
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
image: registry.fedoraproject.org/fedora:latest
options: --privileged --cap-add=NET_ADMIN --cap-add=NET_RAW -v /lib/modules:/lib/modules
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install tools
run: |
sudo dnf -y install ShellCheck bats golang criu asciidoctor iptables iproute kmod jq bash bash-completion zsh fish
Expand All @@ -26,7 +26,7 @@ jobs:
# To display test results from forked repositories they need to
# be uploaded and then analyzed.
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
retention-days: 1
Expand All @@ -42,7 +42,7 @@ jobs:
steps:
- name: Upload
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: event-file
retention-days: 1
Expand All @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build release binary
run: make release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand All @@ -20,7 +20,7 @@ jobs:
gomod:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: verify go.mod/go.sum
run: |
make vendor
Expand All @@ -31,7 +31,7 @@ jobs:
permissions:
pull-requests: read
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: changes
with:
Expand Down

0 comments on commit 180c7b5

Please sign in to comment.