diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-06-05 14:34:25 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-06-05 14:34:25 +0000 |
commit | 1faf7874ed5a0347446e1755938c2c570ba78f31 (patch) | |
tree | 4ffb2c8a45e37a27ab657da386dc22baea87db6d | |
parent | 12b7da289665c75c3839b32c77a491d8909f3e73 (diff) | |
download | vyos-1x-1faf7874ed5a0347446e1755938c2c570ba78f31.tar.gz vyos-1x-1faf7874ed5a0347446e1755938c2c570ba78f31.zip |
T5258: git Actions use ubuntu-22.04 for PR conflicts checker
git Actions use ubuntu-22.04 instead of deprecated ubuntu-18.04
for PR conflicts checker
https://github.com/actions/runner-images/issues/6002
-rw-r--r-- | .github/workflows/pr-conflicts.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pr-conflicts.yml b/.github/workflows/pr-conflicts.yml index 72ff3969b..96040cd60 100644 --- a/.github/workflows/pr-conflicts.yml +++ b/.github/workflows/pr-conflicts.yml @@ -6,7 +6,7 @@ on: jobs: Conflict_Check: name: 'Check PR status: conflicts and resolution' - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: check if PRs are dirty uses: eps1lon/actions-label-merge-conflict@releases/2.x |