Skip to content

Commit

Permalink
[tailscale] .github: update actions/checkout to 4.x
Browse files Browse the repository at this point in the history
Update actions/checkout to 4.x as the version of node used in 3.x is
deprecated for GitHub actions.

Updates #cleanup

Signed-off-by: Mario Minardi <[email protected]>
  • Loading branch information
mpminardi committed Sep 12, 2024
1 parent ed9dc37 commit 4771bca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.ref || github.ref }}
- name: test
Expand All @@ -38,7 +38,7 @@ jobs:
if: contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.ref || github.ref }}
- name: build
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
needs: [upload_release]
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.ref || github.ref }}
- name: Delete older builds
Expand Down

0 comments on commit 4771bca

Please sign in to comment.