Bump the aws-sdk group with 3 updates (#2120) #213
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pipeline | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
DO_NOT_TRACK: 1 | |
SHELL: /bin/bash | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ">=1.24" | |
- name: Install direnv | |
run: curl -fsSL https://direnv.net/install.sh | bash | |
- name: Authorize direnv | |
run: direnv allow && direnv export bash | |
- name: Setup Dagger | |
uses: dagger/dagger-for-github@8.0.0 | |
with: | |
version: "latest" | |
verb: core | |
args: "engine local-cache" | |
- name: 🧪 Run Unit + Integration Pipeline | |
uses: stateful/runme-action@v2 | |
with: | |
workflows: test:pipeline | |
env: | |
DAGGER_CLOUD_TOKEN: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
RUNME_TEST_TOKEN: ${{ secrets.RUNME_TEST_TOKEN }} | |
# gha job metadata | |
BASE_OWNER: ${{ github.repository_owner }} | |
FORK_OWNER: ${{ github.event.pull_request.head.repo.owner.login }} | |
GITHUB_ACTOR: ${{ github.actor }} | |
GITHUB_EVENT_NAME: ${{ github.event_name }} | |
- name: 🔼 Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: logs | |
path: | | |
tests/e2e/logs |