Skip to content

Commit

Permalink
Updating actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-murray authored Apr 29, 2024
1 parent c4c9c2a commit b014938
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_executables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build executables
run: |
npm run build
npm run build-exe
- name: Attach artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: executables
path: cli/*
2 changes: 1 addition & 1 deletion .github/workflows/test_lack_of_permissions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run local Action
uses: ./
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_local_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run local Action
uses: ./
with:
directory: ${{ inputs.directory }}

test_with_arguments:
name: Test
name: Test with Arguments

runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run local Action
uses: ./
Expand Down

0 comments on commit b014938

Please sign in to comment.