Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

chore(deps): update github/codeql-action action to v2 - autoclosed #207

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -54,7 +54,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -68,4 +68,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
32 changes: 32 additions & 0 deletions .github/workflows/debug-kube.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Debug kube

on:
workflow_dispatch:
push:
branches:
- "*"

jobs:
dump:
name: Debug kubeconfig
runs-on: ubuntu-latest
steps:
- uses: azure/setup-kubectl@v3
- name: extract kubeconfig
run: |
echo -n "${{secrets.KUBECONFIG}}" | base64 --decode > kubeconfig
- name: list kube data
run: |
KUBECONFIG=./kubeconfig kubectl config get-contexts
dump-prod:
name: Debug kubeconfig production
runs-on: ubuntu-latest
environment: production
steps:
- uses: azure/setup-kubectl@v3
- name: extract kubeconfig
run: |
echo -n "${{secrets.KUBECONFIG}}" | base64 --decode > kubeconfig
- name: list kube data
run: |
KUBECONFIG=./kubeconfig kubectl config get-contexts
54 changes: 0 additions & 54 deletions .github/workflows/update-datagouv.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .kontinuous/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
projectName: fabrique

dependencies:
fabrique:
extends:
- name: ovh
- name: buildkit-service
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.7.2](https://github.com/SocialGouv/siret2idcc/compare/v1.7.1...v1.7.2) (2023-09-18)


### Bug Fixes

* upgrade docker image ([#2](https://github.com/SocialGouv/siret2idcc/issues/2)) ([28561c4](https://github.com/SocialGouv/siret2idcc/commit/28561c4725d05df4c3a153f080d1650f23de13c1))

## [1.7.1](https://github.com/SocialGouv/siret2idcc/compare/v1.7.0...v1.7.1) (2023-06-22)


Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine
FROM node:18-alpine3.18@sha256:982b5b6f07cd9241c9ebb163829067deac8eaefc57cfa8f31927f4b18943d971

WORKDIR /app

Expand All @@ -16,4 +16,4 @@ COPY . .

USER 1000

ENTRYPOINT ["yarn", "start"]
ENTRYPOINT ["yarn", "start"]
Binary file modified data/WEEZ.csv.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@socialgouv/siret2idcc",
"private": true,
"version": "1.7.1",
"version": "1.7.2",
"description": "Retrieves the matching Convention Collective number for a French company based on its SIRET identification number",
"main": "src/index.js",
"repository": "https://github.com/SocialGouv/siret2idcc",
Expand Down
Loading