Skip to content

Commit

Permalink
upgrade dependent actions to node20 versions (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwwarren authored Oct 30, 2024
1 parent f48d91b commit 8049914
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1
- id: matrix
Expand All @@ -73,7 +73,7 @@ jobs:
RUSTFLAGS: ${{ inputs.rustFlags }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
name: Upload Other Assets
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
env:
ARCHIVE_FILE: integration-test-${{matrix.os}}.tar.zst
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
shell: bash

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}

Expand All @@ -70,7 +70,7 @@ jobs:
run: sh ./cicd/scripts/archive-debug-info.sh "$ARCHIVE_FILE"

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifactId }}
if-no-files-found: ignore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
commit: ${{ github.sha }}
name: Cloudtruth CLI ${{ github.ref_name }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runner: [windows-latest, macos-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cloudtruth/cloudtruth-cli
ref: ${{ inputs.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
commit: ${{ github.sha }}

# rotate out old nightly releases
- uses: dev-drprasad/[email protected].3
- uses: dev-drprasad/[email protected].4
with:
keep_latest: 2
delete_expired_data: 3
Expand All @@ -113,7 +113,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# dispatch repo event to trigger test-nightly.yml
- uses: peter-evans/repository-dispatch@v2
- uses: peter-evans/repository-dispatch@v3
with:
event-type: nightly-release
client-payload: '{"tagName": "${{ needs.create-release.outputs.tagName }}"}'
2 changes: 1 addition & 1 deletion .github/workflows/staging-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
if: ${{ always() && needs.test-nightly.result != 'skipped' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cloudtruth/cloudtruth-cli

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
TEST_ARCHIVE_FILE: integration-test-${{inputs.runsOn}}.tar.zst

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cloudtruth/cloudtruth-cli

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1
- id: matrix
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
CLOUDTRUTH_API_KEY: ${{ secrets.CLOUDTRUTH_API_KEY }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
# it's likely safe to assume that current/latest ref is close enough
# to staging release, but we may need to bump a "staging" tag to track
# the staging release accurately
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cloudtruth/cloudtruth-cli

Expand Down

0 comments on commit 8049914

Please sign in to comment.