build(deps): bump golang from 1.22.4-alpine3.20 to 1.23.3-alpine3.20 #96
Workflow file for this run
This file contains 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: test-many | |
on: | |
pull_request: | |
branches: | |
- '*' | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
# .......................................................................... | |
wait-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait for build to finish | |
uses: lewagon/[email protected] | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
repo-token: ${{ secrets.AUTH_TOKEN }} | |
wait-interval: 20 | |
running-workflow-name: wait-build | |
allowed-conclusions: success,skipped,neutral | |
# .......................................................................... | |
on-linux: | |
runs-on: ubuntu-latest | |
needs: wait-build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Prepare and run tests | |
uses: ./.github/actions/run-test | |
with: | |
sha: ${{ github.sha }} | |
os: ubuntu-latest | |
github-token: ${{ secrets.AUTH_TOKEN }} | |
# .......................................................................... | |
on-macos: | |
runs-on: macos-latest | |
needs: on-linux | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Prepare and run tests | |
uses: ./.github/actions/run-test | |
with: | |
sha: ${{ github.sha }} | |
os: macos-latest | |
github-token: ${{ secrets.AUTH_TOKEN }} | |
# .......................................................................... | |
on-windows: | |
runs-on: windows-latest | |
needs: on-macos | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Prepare and run tests | |
uses: ./.github/actions/run-test | |
with: | |
sha: ${{ github.sha }} | |
os: windows-latest | |
github-token: ${{ secrets.AUTH_TOKEN }} | |
# .......................................................................... | |
on-docker: | |
runs-on: ubuntu-latest | |
needs: on-windows | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build image | |
run: docker build -t lgs . | |
- name: Run and update | |
run: | | |
docker run \ | |
--rm \ | |
-e GITHUB_TOKEN="$GITHUB_TOKEN" \ | |
lgs >> my-github-stars.md | |
gh gist edit ada2117bd8c73a1e94e49580fd5c7cf7 --add my-github-stars.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.AUTH_TOKEN }} |