Skip to content

build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 #310

build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0

build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 #310

Workflow file for this run

name: Build & Push Container vers ghcr.io
on:
push:
jobs:
container_datapi:
name: Push OpenSignauxFaibles container
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version-file: ./js/.nvmrc
- name: Prepare js sources
run: npm install --prefer-offline --no-audit
working-directory: js
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
id: go
- name: Prepare container sources & resources
shell: bash
run: |
go generate -x ./...
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o sfdata
cp ./sfdata ./build-container
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
flavor: |
latest=true
- name: Login to GitHub Container Registry
id: login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./build-container
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}