Skip to content

Commit

Permalink
change operating system version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhodine-orleans-lindsay committed Jan 9, 2025
1 parent 11ff90c commit 3f9f980
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/automate-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Automate_Tag
on: [push]
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
Expand All @@ -25,7 +25,7 @@ jobs:

auto-tag-patch:
needs: test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: |
startsWith(github.ref, 'refs/heads/master') &&
!contains(github.event.head_commit.message, '[MAJOR]') &&
Expand All @@ -43,7 +43,7 @@ jobs:
auto-tag-minor:
needs: test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: |
startsWith(github.ref, 'refs/heads/master') &&
!contains(github.event.head_commit.message, '[MAJOR]') &&
Expand All @@ -61,7 +61,7 @@ jobs:
auto-tag-major:
needs: test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: |
startsWith(github.ref, 'refs/heads/master') &&
contains(github.event.head_commit.message, '[MAJOR]') &&
Expand Down

0 comments on commit 3f9f980

Please sign in to comment.