diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-06-19 13:32:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-19 13:32:40 +0200 |
commit | b02e6097c471b8bf196a2fce4eb22e4b0bae4e11 (patch) | |
tree | 3bf5f582a192bd8f8f3908abdbc5b548ca8a65ed | |
parent | ec974f60cbfa3814c5d654a0f77f0b27a6cc5d94 (diff) | |
download | NorthstarLauncher-b02e6097c471b8bf196a2fce4eb22e4b0bae4e11.tar.gz NorthstarLauncher-b02e6097c471b8bf196a2fce4eb22e4b0bae4e11.zip |
Update `actions/checkout` to v4 (#724)
v3 is outdated and will soon be deprecated
Co-authored-by: Jan <sentrycraft123@gmail.com>
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6048a57..20870278 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: windows-2022 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: 'true' - name: Setup msvc @@ -40,7 +40,7 @@ jobs: format-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: DoozyX/clang-format-lint-action@v0.16.2 with: source: 'primedev' @@ -52,7 +52,7 @@ jobs: format-check-cmake-files: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: puneetmatharu/cmake-format-lint-action@v1.0.4 with: args: "--in-place" |