Skip to content

Commit

Permalink
Updating to the newer checkout action. As this one causes a warning. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
gs-emp authored Nov 15, 2024
1 parent 9685207 commit 32181d5
Show file tree
Hide file tree
Showing 19 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/hybrid_branch_deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build_info: ${{ steps.parse-workspace.outputs.build_info }}
secrets_set: ${{ steps.parse-workspace.outputs.secrets_set }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Parse cloud workspace
id: parse-workspace
uses: ./actions/utils/parse_workspace
Expand All @@ -29,7 +29,7 @@ jobs:
location: ${{ fromJSON(needs.parse_workspace.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hybrid_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
build_info: ${{ steps.parse-workspace.outputs.build_info }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Parse cloud workspace
id: parse-workspace
uses: ./actions/utils/parse_workspace
Expand All @@ -30,7 +30,7 @@ jobs:
location: ${{ fromJSON(needs.parse_workspace.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/serverless_branch_custom_base_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build_info: ${{ steps.parse-workspace.outputs.build_info }}
secrets_set: ${{ steps.parse-workspace.outputs.secrets_set }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Parse cloud workspace
id: parse-workspace
uses: ./actions/utils/parse_workspace
Expand All @@ -29,7 +29,7 @@ jobs:
location: ${{ fromJSON(needs.parse_workspace.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}
- name: Build and deploy to Dagster Cloud serverless
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/serverless_branch_deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build_info: ${{ steps.parse-workspace.outputs.build_info }}
secrets_set: ${{ steps.parse-workspace.outputs.secrets_set }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Parse cloud workspace
id: parse-workspace
uses: ./actions/utils/parse_workspace
Expand All @@ -29,7 +29,7 @@ jobs:
location: ${{ fromJSON(needs.parse_workspace.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}
- name: Build and deploy to Dagster Cloud serverless
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/serverless_custom_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
build_info: ${{ steps.parse-workspace.outputs.build_info }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Parse cloud workspace
id: parse-workspace
uses: ./actions/utils/parse_workspace
Expand All @@ -30,7 +30,7 @@ jobs:
location: ${{ fromJSON(needs.parse_workspace.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Build and deploy to Dagster Cloud serverless
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/serverless_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
build_info: ${{ steps.parse-workspace.outputs.build_info }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Parse cloud workspace
id: parse-workspace
uses: ./actions/utils/parse_workspace
Expand All @@ -30,7 +30,7 @@ jobs:
location: ${{ fromJSON(needs.parse_workspace.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Build and deploy to Dagster Cloud serverless
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/serverless_launch_job_definitions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Dagster Serverless Job Launch
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}
- name: Launch a job on Dagster Cloud serverless
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
name: PyTest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions actions/hybrid_branch_deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ runs:
steps:
- name: Checkout target repo
if: inputs.checkout_repo == 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}

- name: Checkout action repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: dagster-io/dagster-cloud-action
ref: ${{ env.DAGSTER_ACTION_REF }}
Expand Down
4 changes: 2 additions & 2 deletions actions/hybrid_prod_deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ runs:
steps:
- name: Checkout target repo
if: inputs.checkout_repo == 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}

- name: Checkout action repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: dagster-io/dagster-cloud-action
ref: ${{ env.DAGSTER_ACTION_REF }}
Expand Down
4 changes: 2 additions & 2 deletions actions/launch_job/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ runs:
using: "composite"
steps:
- name: Checkout target repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}

- name: Checkout action repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: dagster-io/dagster-cloud-action
ref: ${{ env.DAGSTER_ACTION_REF }}
Expand Down
4 changes: 2 additions & 2 deletions actions/serverless_branch_deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ runs:
steps:
- name: Checkout target repo
if: inputs.checkout_repo == 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}

- name: Checkout action repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: dagster-io/dagster-cloud-action
ref: ${{ env.DAGSTER_ACTION_REF }}
Expand Down
4 changes: 2 additions & 2 deletions actions/serverless_prod_deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ runs:
steps:
- name: Checkout target repo
if: inputs.checkout_repo == 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}

- name: Checkout action repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: dagster-io/dagster-cloud-action
ref: ${{ env.DAGSTER_ACTION_REF }}
Expand Down
2 changes: 1 addition & 1 deletion actions/utils/parse_workspace/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: "composite"
steps:
- name: Checkout target repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}

Expand Down
2 changes: 1 addition & 1 deletion actions/utils/prerun/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
using: "composite"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Checking out the commit sha should always work. For closed PRs with deleted branches,
# this checks out the sha of the merge commit.
Expand Down
4 changes: 2 additions & 2 deletions github/serverless/branch_deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Checkout for Python Executable Deploy
if: steps.prerun.outputs.result == 'pex-deploy'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
path: project-repo
Expand All @@ -61,7 +61,7 @@ jobs:
location: ${{ fromJSON(needs.dagster_cloud_default_deploy.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Build and deploy to Dagster Cloud serverless
Expand Down
4 changes: 2 additions & 2 deletions github/serverless/dbt/branch_deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Checkout
if: steps.prerun.outputs.result == 'pex-deploy'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
path: project-repo
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
location: ${{ fromJSON(needs.dagster_cloud_default_deploy.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Build and deploy to Dagster Cloud serverless
Expand Down
4 changes: 2 additions & 2 deletions github/serverless/dbt/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Checkout
if: steps.prerun.outputs.result == 'pex-deploy'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
path: project-repo
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
location: ${{ fromJSON(needs.dagster_cloud_default_deploy.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Build and deploy to Dagster Cloud serverless
Expand Down
4 changes: 2 additions & 2 deletions github/serverless/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Checkout for Python Executable Deploy
if: steps.prerun.outputs.result == 'pex-deploy'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
path: project-repo
Expand All @@ -63,7 +63,7 @@ jobs:
location: ${{ fromJSON(needs.dagster_cloud_default_deploy.outputs.build_info) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Build and deploy to Dagster Cloud serverless
Expand Down

0 comments on commit 32181d5

Please sign in to comment.