Skip to content

chore(deps): update dependency boto3 to v1.34.149 #2332

chore(deps): update dependency boto3 to v1.34.149

chore(deps): update dependency boto3 to v1.34.149 #2332

Workflow file for this run

name: envvar
on:
pull_request:
types:
- opened # default
- synchronize # default
- reopened # default
- ready_for_review # draft -> ready
jobs:
first:
env:
NAMESPACE: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set env ${{ env.NAMESPACE }}
id: first-job
run: |
echo "TEST=TEST_VALUE" >> "$GITHUB_ENV"
echo "TEST=TEST_VALUE" >> "$GITHUB_OUTPUT"
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Get env
run: |
echo ${{ env.TEST }}
echo ${{ steps.first-job.outputs.TEST }}
second:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Get env
run: |
echo "${{ env.TEST }}"
echo "$GITHUB_REF"
PR_NUMBER=$(echo "$GITHUB_REF" | awk 'BEGIN { FS = "/" } ; { print $3 }')
echo "PR: $PR_NUMBER"