Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GLIBC not found #252

Open
jgengo opened this issue Feb 14, 2024 · 0 comments
Open

GLIBC not found #252

jgengo opened this issue Feb 14, 2024 · 0 comments

Comments

@jgengo
Copy link

jgengo commented Feb 14, 2024

Describe the bug

My projects running 8398a7/action-slack are failing for the following reason:

/opt/actions-runner/externals/node20/bin/node: /lib/x86_64-linux-gnu/libm.so.6: version GLIBC_2.27' not found (required by /opt/actions-runner/externals/node20/bin/node) /opt/actions-runner/externals/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.28' not found (required by /opt/actions-runner/externals/node20/bin/node)
/opt/actions-runner/externals/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.25' not found (required by /opt/actions-runner/externals/node20/bin/node)

All the workflow is successful and should then just send a notification on Slack.

To Reproduce

Here is my workflow.yml

  notify:
    name: Slack notification
    needs: deploy
    if: always()
    runs-on: self-hosted

    steps:
    - uses: technote-space/workflow-conclusion-action@v3
    - uses: 8398a7/action-slack@v3
      with:
        status: custom
        fields: workflow,commit,repo,ref,author,message
        custom_payload: |
          {
            username: "GitHub Actions",
            icon_emoji: ":github:",
            attachments: [{
              color: '${{ env.WORKFLOW_CONCLUSION }}' === 'success' ? 'good' : '${{ env.WORKFLOW_CONCLUSION }}' === 'failure' ? 'danger' : 'warning',
              text: `${process.env.AS_WORKFLOW}: ${{ env.WORKFLOW_CONCLUSION }} on ${process.env.AS_REPO}\n(${process.env.AS_COMMIT}): ${process.env.AS_MESSAGE}\nCommited by ${process.env.AS_AUTHOR}`,
            }]
          }
      env:
        GITHUB_TOKEN: ${{ secrets.YOUR_GITHUB_TOKEN }}
        SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
        MATRIX_CONTEXT: ${{ toJson(matrix) }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant