Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 5, 2023
1 parent b91dcc4 commit 4962d48
Show file tree
Hide file tree
Showing 16 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Check whether tests need to be run based on diff
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: antrea-io/has-changes@v2
Expand All @@ -32,7 +32,7 @@ jobs:
if: ${{ needs.check-changes.outputs.has_changes == 'yes' || github.event_name == 'push' }}
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Antrea amd64 Docker image without pushing to registry
if: ${{ github.repository != 'antrea-io/antrea' || github.event_name != 'push' || github.ref != 'refs/heads/main' }}
run: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
if: ${{ needs.check-changes.outputs.has_changes == 'yes' || github.event_name == 'push' }}
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Antrea UBI8 Docker image without pushing to registry
if: ${{ github.repository != 'antrea-io/antrea' || github.event_name != 'push' || github.ref != 'refs/heads/main' }}
run: |
Expand All @@ -82,7 +82,7 @@ jobs:
if: ${{ needs.check-changes.outputs.has_changes == 'yes' || github.event_name == 'push' }}
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Antrea Agent Simulator Docker image
run: make build-scale-simulator
- name: Push Antrea Agent Simulator Docker image to registry
Expand All @@ -99,7 +99,7 @@ jobs:
if: ${{ needs.check-changes.outputs.has_changes == 'yes' || github.event_name == 'push' }}
runs-on: [windows-2019]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Antrea Windows Docker image
run: make build-windows
- name: Push Antrea Windows Docker image to registry
Expand All @@ -117,7 +117,7 @@ jobs:
if: ${{ needs.check-changes.outputs.has_changes == 'yes' || github.event_name == 'push' }}
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build antrea-mc-controller Docker image
run: make build-antrea-mc-controller
- name: Push antrea-mc-controller Docker image to registry
Expand All @@ -134,7 +134,7 @@ jobs:
if: ${{ needs.check-changes.outputs.has_changes == 'yes' || github.event_name == 'push' }}
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build flow-aggregator Docker image
run: make flow-aggregator-image
- name: Check flow-aggregator Docker image
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: [ubuntu-latest]
needs: get-version
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and push Antrea Ubuntu amd64 Docker image to registry
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: [ubuntu-latest]
needs: get-version
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and push Antrea UBI8 amd64 Docker image to registry
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: [windows-2019]
needs: get-version
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Antrea Windows Docker image and push to registry
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand All @@ -78,7 +78,7 @@ jobs:
runs-on: [ubuntu-latest]
needs: get-version
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build antrea-mc-controller Docker image and push to registry
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand All @@ -93,7 +93,7 @@ jobs:
runs-on: [ubuntu-latest]
needs: get-version
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build flow-aggregator Docker image and push to registry
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: |
sudo apt-get clean
df -h
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ inputs.antrea-version }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
if: ${{ github.actor == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'dependencies') && contains(github.event.pull_request.labels.*.name, 'go') }}
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Check out the pull request HEAD
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_update_base_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.antrea-repository }}
ref: ${{ github.event.inputs.antrea-ref }}
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Check whether tests need to be run based on diff
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: antrea-io/has-changes@v2
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: [windows-2022]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand All @@ -82,7 +82,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand All @@ -129,7 +129,7 @@ jobs:
runs-on: [macos-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand All @@ -144,7 +144,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand All @@ -169,7 +169,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand All @@ -184,7 +184,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand All @@ -204,7 +204,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/golicense.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Check whether tests need to be run based on diff
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: antrea-io/has-changes@v2
Expand All @@ -33,7 +33,7 @@ jobs:
if: ${{ needs.check-changes.outputs.has_changes == 'yes' || github.event_name != 'pull_request' }}
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
Expand Down
Loading

0 comments on commit 4962d48

Please sign in to comment.