chore: bump thenativeweb/get-next-version from 2.6.1 to 2.6.3 #178
Workflow file for this run
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: QA | |
on: pull_request | |
permissions: | |
contents: read | |
packages: read | |
jobs: | |
qa: | |
name: QA | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Configure access to private Go dependencies | |
run: | | |
echo "machine github.com login goloroden password ${{ secrets.TOKEN_GITHUB_TO_GITHUB_REPOSITORIES_RW }}" >> ~/.netrc | |
- name: Login to GitHub container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Use Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./go.mod | |
- name: Run QA | |
run: make qa |