Skip to content

Commit

Permalink
ci(deps): Bump actions/checkout from 2 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...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 bf5a098 commit 4132e6f
Show file tree
Hide file tree
Showing 12 changed files with 49 additions and 49 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cd_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
SLEEP: 10
TOPIC: foobar
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up K3d for Ubuntu
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
env:
FLV_SOCKET_WAIT: 600
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup K3d
run: |
curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | TAG=${{ env.K3D_VERSION }} bash
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
os: [ubuntu-latest]
version: [latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set the expected fluvio version
run: |
if [[ -z "${{ env.USE_VERSION }}" ]]; then
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
cluster_version: [stable, latest]
cli_version: [stable, latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup BATS
uses: mig4/setup-bats@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd_dev_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
SLEEP: 10
TOPIC: foobar
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up K3d for Ubuntu
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cd_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: Release success check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Login GH CLI
run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
- name: Get status of latest RELEASE_CHECK run
Expand All @@ -52,7 +52,7 @@ jobs:
os: [ubuntu-latest]
version: [none, stable, semver]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set the expected fluvio version
run: |
if [[ -z "${{ env.USE_VERSION }}" ]]; then
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
env:
FLV_SOCKET_WAIT: 600
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup K3d
run: curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | TAG=${{ env.K3D_VERSION }} bash
- name: Create K3d cluster
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
FLV_SOCKET_WAIT: 600
FLV_DISPATCHER_WAIT: 300
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup K3d
run: curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | TAG=${{ env.K3D_VERSION }} bash
- name: Create K3d cluster
Expand Down
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
RELEASE_NAME: release
RELEASE: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Print env
run: |
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
RUST_BIN_DIR: target/${{ matrix.rust-target }}/debug
RELEASE_NAME: debug
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# If this job is being run by Bors (it was pushed to staging),
# then build and run in release mode
Expand Down Expand Up @@ -375,7 +375,7 @@ jobs:
RUSTV: ${{ matrix.rust }}
TARGET: ${{ matrix.rust-target }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
RELEASE: true
RELEASE_NAME: release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand All @@ -455,7 +455,7 @@ jobs:
RUST_BACKTRACE: full
RUSTV: ${{ matrix.rust }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -487,7 +487,7 @@ jobs:
RUST_BACKTRACE: full
RUSTV: ${{ matrix.rust }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -523,7 +523,7 @@ jobs:
RUST_BACKTRACE: full
RUSTV: ${{ matrix.rust }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -552,7 +552,7 @@ jobs:
RUST_BACKTRACE: full
RUSTV: ${{ matrix.rust }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -602,7 +602,7 @@ jobs:
batch,
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download artifact - fluvio
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -722,7 +722,7 @@ jobs:
rust: [stable]
steps:
# Needed for k8-util/docker/build.sh
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Download artifacts
- name: Download fluvio-run
Expand Down Expand Up @@ -770,7 +770,7 @@ jobs:
k8: [k3d]
spu: [1,2]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Download artifacts
- name: Download artifact - fluvio
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -877,7 +877,7 @@ jobs:
os: [ubuntu-latest]
run: [r1]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup K3d
run: |
curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | TAG=${{ env.K3D_VERSION }} bash
Expand Down Expand Up @@ -950,7 +950,7 @@ jobs:
cli_version: stable

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -1120,7 +1120,7 @@ jobs:
- 1
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Download Artifacts from Development Build (This Commit)
- name: Download artifact - fluvio
Expand Down Expand Up @@ -1211,7 +1211,7 @@ jobs:
- partition_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download x86_64-unknown-linux-musl Docker Image as Artifact
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -1253,7 +1253,7 @@ jobs:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
#- name: Login GH CLI
# run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
- name: Delete old release
Expand All @@ -1273,7 +1273,7 @@ jobs:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
#- name: Login GH CLI
# run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
- name: package helm
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
RUST_BIN_DIR: target/${{ matrix.rust-target }}/debug
RELEASE_NAME: debug
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# If this job is being run by Bors (it was pushed to staging),
# then build and run in release mode
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
# run: ${{ fromJson(needs.config.outputs.runs )}}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download artifact - fluvio
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
run: [r1]
spu: [1]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download artifact - fluvio
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
rust: [stable]
steps:
# Needed for k8-util/docker/build.sh
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Download artifacts
- name: Download fluvio-run
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
k8: [kind]
spu: [1]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Download artifacts
- name: Download artifact - fluvio
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_unused_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
RUSTV: ${{ matrix.rust }}
TARGET: ${{ matrix.rust-target }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/connector-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: fluvio install cdk --develop
- name: Fluvio Login
run: fluvio cloud login --email ${{ secrets.CLOUD_USER_EMAIL }} --password ${{ secrets.CLOUD_USER_PASSWORD }} ${{ inputs.cloud-url != '' && '--remote' || '' }} ${{ inputs.cloud-url }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
run: fluvio install cdk --develop
- name: Fluvio Login
run: fluvio cloud login --email ${{ secrets.CLOUD_USER_EMAIL }} --password ${{ secrets.CLOUD_USER_PASSWORD }} ${{ inputs.cloud-url != '' && '--remote' || '' }} ${{ inputs.cloud-url }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
- uses: Swatinem/rust-cache@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hourly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
RELEASE_NAME: release
RELEASE: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
TEST_BINARY: fluvio-test-x86_64-unknown-linux-musl

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Login GH CLI
# if: ${{ false }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
name: Publish Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Publish latest development Fluvio Image
env:
Expand All @@ -53,7 +53,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
BPKG_TOKEN: ${{ secrets.BPKG_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install fluvio-package
env:
CHANNEL_TAG: stable # We want to ensure we install the stable version of CLI
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install stable Fluvio CLI
env:
CHANNEL_TAG: stable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# name: CD_Dev check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - name: Login GH CLI
# run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
# - name: Get status of latest CD_Dev run
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
profile: minimal
override: true

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.commit }}

Expand Down
Loading

0 comments on commit 4132e6f

Please sign in to comment.