Skip to content

Commit

Permalink
ci: Update to checkout@v3
Browse files Browse the repository at this point in the history
v2 is being deprecated.
  • Loading branch information
cgwalters committed Dec 12, 2022
1 parent 854413f commit 21338b2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
container: registry.ci.openshift.org/coreos/fcos-buildroot:testing-devel
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# https://github.com/actions/checkout/issues/760
- name: Mark git checkout as safe
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
Expand All @@ -49,7 +49,7 @@ jobs:
options: "--user root --privileged"
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# https://github.com/actions/checkout/issues/760
- name: Mark git checkout as safe
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
Expand All @@ -66,7 +66,7 @@ jobs:
container: registry.ci.openshift.org/coreos/fcos-buildroot:testing-devel
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# https://github.com/actions/checkout/issues/760
- name: Mark git checkout as safe
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
container: registry.ci.openshift.org/coreos/fcos-buildroot:testing-devel
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# https://github.com/actions/checkout/issues/760
- name: Mark git checkout as safe
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
Expand All @@ -117,7 +117,7 @@ jobs:
container: quay.io/fedora/fedora-coreos:testing-devel
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v2
with:
Expand All @@ -139,7 +139,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Checkout coreos-layering-examples
uses: actions/checkout@v3
with:
Expand All @@ -154,7 +154,7 @@ jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
log-level: warn
Expand All @@ -168,7 +168,7 @@ jobs:
options: "--user root --privileged -v /var/tmp:/var/tmp"
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install test dependencies
run: ./ci/install-test-deps.sh
- name: Download build
Expand All @@ -188,7 +188,7 @@ jobs:
options: "--user root --privileged -v /var/tmp:/var/tmp"
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install test dependencies
run: ./ci/install-test-deps.sh
- name: Download build
Expand All @@ -208,7 +208,7 @@ jobs:
options: "--user root --privileged -v /var/tmp:/var/tmp"
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v2
with:
Expand All @@ -225,7 +225,7 @@ jobs:
- name: Install git
run: yum -y install git
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: true
# https://github.com/actions/checkout/issues/760
Expand Down

0 comments on commit 21338b2

Please sign in to comment.