Skip to content

Commit

Permalink
Updating actions to latest Node.js 20 compatible versions
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-murray authored Jan 29, 2024
1 parent 13fafb3 commit 8ef669e
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

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

- name: Use action
id: use_action
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

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

- name: Use action
id: use_action
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_organization_installed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
steps:
- name: Checkout specified branch
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

- name: Checkout
if: github.event_name != 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use action
id: use_action
Expand All @@ -35,7 +35,7 @@ jobs:
organization: octodemo

- name: Use token to read details
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ steps.use_action.outputs.token }}
script: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_repository_installed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
steps:
- name: Checkout specified branch
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

- name: Checkout
if: github.event_name != 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use action
id: use_action
Expand All @@ -34,7 +34,7 @@ jobs:
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}

- name: Use token to read details
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ steps.use_action.outputs.token }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_repository_installed_limited.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

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

- name: Use action
id: use_action
Expand All @@ -23,7 +23,7 @@ jobs:
permissions: issues:read, actions:write

- name: Use token to read details
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ steps.use_action.outputs.token }}
script: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_repository_installed_proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
steps:
- name: Checkout specified branch
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

- name: Checkout
if: github.event_name != 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start Squid Proxy container
run: |
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
sudo cat ${{ github.workspace }}/squid/access.log
- name: Use token to read details
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ steps.use_action.outputs.token }}
script: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
steps:
- name: Checkout specified branch
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

- name: Checkout
if: github.event_name != 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start Squid Proxy container
run: |
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
sudo cat ${{ github.workspace }}/squid/access.log
- name: Use token to read details
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ steps.use_action.outputs.token }}
script: |
Expand All @@ -89,13 +89,13 @@ jobs:
steps:
- name: Checkout specified branch
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

- name: Checkout
if: github.event_name != 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start Squid Proxy container
run: |
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
sudo cat ${{ github.workspace }}/squid/access.log
- name: Use token to read details
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ steps.use_action.outputs.token }}
script: |
Expand Down

0 comments on commit 8ef669e

Please sign in to comment.