Skip to content

Commit

Permalink
Merge pull request #136 from Cyberbeni/update-workflows
Browse files Browse the repository at this point in the history
update workflows to use the latest versions
  • Loading branch information
Cyberbeni authored May 23, 2024
2 parents 894b2bc + 7243210 commit 7c869f3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/manual-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build
run: make
- name: Commit
uses: EndBug/add-and-commit@v6
uses: EndBug/add-and-commit@v9
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Ensure Built
run: |
make
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
image: swift:5.8
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run action with version
uses: ./
with:
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run action with version
uses: ./
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run action without branch
uses: ./
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Update dependencies
run: yarn upgrade --latest
- name: Build
Expand All @@ -28,7 +28,7 @@ jobs:
fi
- name: Create Pull Request
if: ${{ steps.changes.outputs.dist || github.event.inputs.force == 'true' }}
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@v6
with:
commit-message: "Update dependencies"
branch: yarn-upgrade-latest
Expand Down

0 comments on commit 7c869f3

Please sign in to comment.