chore(deps): update github-actions #2110
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: ci | |
on: | |
push: | |
branches: [master] | |
release: | |
types: [created] | |
pull_request: | |
branches: [master] | |
permissions: read-all | |
jobs: | |
build: | |
uses: chgl/.github/.github/workflows/standard-build.yaml@eeb21ccef04629050db539bc17476bf49e7820e3 # v1.9.5 | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
pull-requests: write | |
actions: read | |
security-events: write | |
with: | |
enable-build-test-layer: false | |
enable-upload-test-image: false | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
lint: | |
uses: chgl/.github/.github/workflows/standard-lint.yaml@eeb21ccef04629050db539bc17476bf49e7820e3 # v1.9.5 | |
permissions: | |
contents: read | |
pull-requests: write | |
issues: write | |
security-events: write | |
actions: read | |
with: | |
enable-codeql: false | |
enable-validate-gradle-wrapper: false | |
enable-verify-base-image-signature: false | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
release: | |
uses: chgl/.github/.github/workflows/standard-release.yaml@eeb21ccef04629050db539bc17476bf49e7820e3 # v1.9.5 | |
needs: | |
- build | |
permissions: | |
contents: write | |
pull-requests: write | |
issues: write | |
with: | |
use-app-token: true | |
secrets: | |
app-token-app-id: ${{ secrets.RELEASER_APP_ID }} | |
app-token-private-key: ${{ secrets.RELEASER_APP_PRIVATE_KEY }} | |
copy-image-to-dockerhub: | |
name: copy ghcr.io image to DockerHub | |
if: ${{ github.event_name != 'pull_request' }} | |
runs-on: ubuntu-24.04 | |
needs: | |
- build | |
steps: | |
- uses: imjasonh/setup-crane@31b88efe9de28ae0ffa220711af4b60be9435f6e # v0.4 | |
- name: Login to DockerHub | |
env: | |
DOCKERHUB_TOKEN: "${{ secrets.DOCKERHUB_TOKEN }}" | |
run: | | |
echo "${DOCKERHUB_TOKEN}" | crane auth login docker.io --username chgl --password-stdin | |
- name: Copy all tags | |
env: | |
TAGS: ${{ needs.build.outputs.image-tags }} | |
run: | | |
echo "${TAGS}" | while read -r tag; do crane copy "$tag" "${tag/ghcr.io/docker.io}"; done |