diff options
author | Till <2353100+S7evinK@users.noreply.github.com> | 2024-02-08 09:58:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 09:58:59 +0100 |
commit | be0c27e68865f031e59a091fcec5244a7b48da44 (patch) | |
tree | 3ee54e26f26cdddf35a7a5841c5a81b255455216 /.github/workflows/k8s.yml | |
parent | 436773ab71463dae030e8a3ba21a32f8fd78655c (diff) |
Update all the CI actions (#3323)
Also adds a job for the scheduled CI run to only run if there has been a
commit in the last 24h
([StackOverflow](https://stackoverflow.com/questions/63014786/how-to-schedule-a-github-actions-nightly-build-but-run-it-only-when-there-where))
[skip ci]
Diffstat (limited to '.github/workflows/k8s.yml')
-rw-r--r-- | .github/workflows/k8s.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/k8s.yml b/.github/workflows/k8s.yml index 6e2533d9..a49042bf 100644 --- a/.github/workflows/k8s.yml +++ b/.github/workflows/k8s.yml @@ -17,7 +17,7 @@ jobs: outputs: changed: ${{ steps.list-changed.outputs.changed }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: azure/setup-helm@v3 @@ -48,7 +48,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{ inputs.checkoutCommit }} |