Skip to content

Update module github.com/aws/aws-sdk-go to v1.55.6 #1445

Update module github.com/aws/aws-sdk-go to v1.55.6

Update module github.com/aws/aws-sdk-go to v1.55.6 #1445

Workflow file for this run

name: script test / linux
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uaws-ecr-get-login-password
run: ./install.sh ecr-get-login-password
- name: Check installed command
run: |
export PATH=${PATH}:${HOME}/.local/bin
which uaws-ecr-get-login-password
test -L $(which uaws-ecr-get-login-password)
test -x $(realpath $(which uaws-ecr-get-login-password))
uaws-install:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install ecr-get-login-password subcommand
run: ./uaws install ecr-get-login-password
- name: Check installed command
run: |
export PATH=${PATH}:${HOME}/.local/bin
which uaws-ecr-get-login-password
test -L $(which uaws-ecr-get-login-password)
test -x $(realpath $(which uaws-ecr-get-login-password))
- name: Check upgrade
run: ./uaws upgrade
uaws-install-with-token:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Show download URLs
run: ./uaws get_download_urls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install ecr-get-login-password subcommand
run: ./uaws install ecr-get-login-password
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check installed command
run: |
export PATH=${PATH}:${HOME}/.local/bin
which uaws-ecr-get-login-password
test -L $(which uaws-ecr-get-login-password)
test -x $(realpath $(which uaws-ecr-get-login-password))
- name: Check upgrade
run: ./uaws upgrade
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}