summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-10-03 19:42:28 +0000
committerDavid Peter <sharkdp@users.noreply.github.com>2022-10-03 22:41:07 +0200
commit0cc4e98560077a937c288e37988f676644e6e147 (patch)
tree93c5d420f297bc207851dc49917397430f80c1cd /.github/workflows
parent9051fc5465f2ad54d8e5de0491a70193e0ecc438 (diff)
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/CICD.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index 2ccb2f32..268e65c0 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -24,14 +24,14 @@ jobs:
default: true
profile: minimal
components: rustfmt
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- run: cargo fmt -- --check
license_checks:
name: License checks
runs-on: ubuntu-20.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
submodules: true # we especially want to perform license checks on submodules
- run: tests/scripts/license-checks.sh
@@ -43,7 +43,7 @@ jobs:
MSRV_FEATURES: --no-default-features --features minimal-application,bugreport,build-assets
steps:
- name: Checkout source code
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Install rust toolchain (v${{ env.MIN_SUPPORTED_RUST_VERSION }})
uses: actions-rs/toolchain@v1
@@ -68,7 +68,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Git checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
submodules: true # we need all syntax and theme submodules
- name: Install Rust toolchain
@@ -113,7 +113,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Git checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Prepare environment variables
run: |
echo "BAT_SYSTEM_CONFIG_PREFIX=$GITHUB_WORKSPACE/tests/examples/system_config" >> $GITHUB_ENV
@@ -139,7 +139,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Git checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
@@ -186,7 +186,7 @@ jobs:
- { target: x86_64-unknown-linux-musl , os: ubuntu-20.04, use-cross: true }
steps:
- name: Checkout source code
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Install prerequisites
shell: bash