Skip to content

Commit

Permalink
Merge pull request orb-community#2889 from orb-community/develop
Browse files Browse the repository at this point in the history
Release v0.29.0
  • Loading branch information
mfiedorowicz authored Dec 21, 2023
2 parents 793910f + 7909805 commit f533b9a
Show file tree
Hide file tree
Showing 325 changed files with 10,648 additions and 12,065 deletions.
2 changes: 1 addition & 1 deletion .github/actions/go-lint/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15.1-buster
FROM golang:1.21-buster

LABEL author="Everton Haise Taques<everton.taques@encora.com>"
LABEL maintainer="netboxlabs"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/go-report/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine
FROM golang:1.21-alpine

LABEL author="Everton Haise Taques<everton.taques@encora.com>"
LABEL maintainer="netboxlabs"
Expand Down
111 changes: 65 additions & 46 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,73 +1,92 @@
documentation:
- docs/*
- docs/**/*
- mkdocs.yml
- changed-files:
- any-glob-to-any-file: ['docs/*', 'docs/**/*', 'mkdocs.yml']

github-actions:
- .github/workflows/*
- .github/workflows/**/*
- .github/dependabot.yml
- .github/boring-cyborg.yml
- .github/release-drafter.yml
- .github/semantic.yml
- .github/stale.yml
- .github/mergify.yml
- .github/labeler.yml
- changed-files:
- any-glob-to-any-file: ['.github/workflows/*',
'.github/workflows/**/*',
'.github/dependabot.yml',
'.github/boring-cyborg.yml',
'..github/release-drafter.yml',
'.github/semantic.yml',
'.github/stale.yml',
'.github/mergify.yml',
'.github/labeler.yml']

github-templates:
- .github/ISSUE_TEMPLATE/*
- .github/PULL_REQUEST_TEMPLATE.md
- .github/.chglog/*
- .github/.chglog/**/*
- changed-files:
- any-glob-to-any-file: ['.github/ISSUE_TEMPLATE/*',
'.github/PULL_REQUEST_TEMPLATE.md',
'.github/.chglog/*',
'.github/.chglog/**/*']

internal:
- .flake8
- .bandit.baseline
- .gitignore
- .pre-commit-config.yaml
- MANIFEST.in
- Makefile
- CONTRIBUTING.md
- MAINTAINERS.md
- CODE_OF_CONDUCT.md
- LICENSE
- THIRD-PARTY-LICENSES
- .dockerignore
- .editorconfig
- setup.cfg
- changed-files:
- any-glob-to-any-file: ['.flake8',
'.bandit.baseline',
'.gitignore',
'.pre-commit-config.yaml',
'MANIFEST.in',
'Makefile',
'CONTRIBUTING.md',
'MAINTAINERS.md',
'CODE_OF_CONDUCT.md',
'LICENSE',
'THIRD-PARTY-LICENSES',
'.dockerignore',
'.editorconfig',
'setup.cfg']

dependencies:
- pyproject.toml
- poetry.lock
- requirements.txt
- changed-files:
- any-glob-to-any-file: ['pyproject.toml',
'poetry.lock',
'requirements.txt']

tests:
- automated_tests/*
- automated_tests/**/*
- tests/*
- tests/**/*
- changed-files:
- any-glob-to-any-file: ['automated_tests/*',
'automated_tests/**/*',
'tests/*',
'tests/**/*']

build:
- Dockerfile
- changed-files:
- any-glob-to-any-file: ['Dockerfile',
'Dockerfile.*',
'docker-compose.yml',
'docker-compose.*.yml',
'docker-compose.*.yaml',
'docker-compose.*.yaml',
'docker-compose']

golang:
- "**/*.go"
- changed-files:
- any-glob-to-any-file: ['go.mod',
'go.sum',
'**/*.go']

javascript:
- "**/*.json"
- changed-files:
- any-glob-to-any-file: '**/*.json'

json:
- "**/*.json"
- changed-files:
- any-glob-to-any-file: '**/*.json'

markdown:
- "**/*.md"
- changed-files:
- any-glob-to-any-file: '**/*.md'

python:
- "**/*.py"
- changed-files:
- any-glob-to-any-file: ['requirements.txt', '**/*.py']

sql:
- "**/*.py"
- changed-files:
- any-glob-to-any-file: '**/*.sql'

typescript:
- "**/*.ts"
- "**/*.tsx"
- changed-files:
- any-glob-to-any-file: ['**/*.ts', '**/*.tsx']
14 changes: 7 additions & 7 deletions .github/workflows/agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.21.x

- name: Get branch name
shell: bash
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get branch name
shell: bash
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- name: Login to Docker Hub orbcommunity
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.ORB_DOCKERHUB_USERNAME }}
password: ${{ secrets.ORB_DOCKERHUB_TOKEN }}
Expand All @@ -144,7 +144,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get branch name
shell: bash
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
- name: Login to Docker Hub orbcommunity
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.ORB_DOCKERHUB_USERNAME }}
password: ${{ secrets.ORB_DOCKERHUB_TOKEN }}
Expand Down
Loading

0 comments on commit f533b9a

Please sign in to comment.