github actions - 结帐操作中的问题

Pal*_*all 3 github jenkins terraform aws-cloud9 github-actions-runners

我是 github 动作跑步者的新手。我从 master 创建了一个 test-master 分支,另一个功能分支也从 master test-feature 中取出。我的 test-master 分支有一个与 terraform 相关的工作流程。但是,我在 git checkout 操作 PFB 代码和错误中遇到错误。

name: 'Terraform'
on: [pull_request]

jobs:
  terraform:
    name: 'Terraform'
    runs-on: ubuntu-latest

    # Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest
    defaults:
      run:
        shell: bash

    steps:
    # Checkout the repository to the GitHub Actions runner
    - name: Checkout
      uses: actions/checkout@test-master

    # Install the latest version of Terraform CLI and configure the Terraform CLI configuration file with a Terraform Cloud user API token
    - name: Setup Terraform
      uses: hashicorp/setup-terraform@v1
      with:
        cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

    # Initialize a new or existing Terraform working directory by creating initial files, loading any remote state, downloading modules, etc.
    - name: Terraform Init
      run: terraform init

    # Checks that all Terraform configuration files adhere to a canonical format
    - name: Terraform Format
      id: fmt
      run: terraform fmt --recursive
Run Code Online (Sandbox Code Playgroud)

每当我尝试从测试功能向测试主控提出拉取请求时,它都会运行工作流程并生成错误。错误:无法解析操作actions/checkout@test-master,无法找到版本test-master

请指导我为什么它不识别 test-maser 分支。

Edw*_*son 5

当您想要使用某个操作时,您可以指定操作名称和要运行的操作版本。这行:

    - uses: actions/checkout@test-master
Run Code Online (Sandbox Code Playgroud)

表示您要使用actions/checkoutversion 处的操作test-master。没有这样的动作版本。

你要actions/checkout@v2。如果您想查看名为分支test-master,请将其指定为操作的选项。例如:

    - name: Checkout
      uses: actions/checkout@v2
      with:
        ref: 'test-master'
Run Code Online (Sandbox Code Playgroud)

  • `v2` 是 `actions/checkout` 操作的最新版本。它是由 GitHub Actions 团队明确创建的。它与“ref”标签中存在的分支无关。 (2认同)