Skip to content

Commit

Permalink
update actions to node20
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Feb 28, 2024
1 parent 1778f5f commit ede371e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/generate-docs-for-dbt-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ jobs:

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

- name: upload changelog artifacts
id: retrieve_changelogs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ needs.set_variables.outputs.changie_artifact_name }}
path: |
Expand All @@ -94,7 +94,7 @@ jobs:
steps:

- name: Checkout dbt-docs repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Update submodules
run: git submodule update --init --recursive
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
run: npx webpack

- name: upload index.html artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ needs.set_variables.outputs.index_artifact_name }}
path: dist/index.html
Expand All @@ -136,7 +136,7 @@ jobs:

steps:
- name: Check out dbt-core main branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: dbt-labs/dbt-core
ref: main
Expand All @@ -152,13 +152,13 @@ jobs:
git status
- name: Download index artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.set_variables.outputs.index_artifact_name }}
path: "core/dbt/include"

- name: Download changelog artifact(s)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.set_variables.outputs.changie_artifact_name }}
path: ".changes/unreleased"
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:

steps:
- name: Checkout dbt-docs repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: dbt-labs/dbt-docs # redundant but calling it out for clarity

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout dbt-docs repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Update submodules
run: git submodule update --init --recursive
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
run: npx webpack

- name: upload index.html artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ needs.set_variables.outputs.index_artifact_name }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand Down

0 comments on commit ede371e

Please sign in to comment.