-
Notifications
You must be signed in to change notification settings - Fork 0
Devops 384 action upgrade #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
33331c9
feat: update the action to uv and python 3.13
githubofkrishnadhas 375284c
feat: update the Dockerfile and entrypoint script
githubofkrishnadhas ca1a0ae
feat: update the Dockerfile
githubofkrishnadhas e90fdc4
fix: jwt set up from pvt key
githubofkrishnadhas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| # Container image that runs your code | ||
| FROM python:3.11-slim-bullseye | ||
| FROM python:3.13-slim-bullseye | ||
|
|
||
| WORKDIR /app | ||
| # Copies your code file from your action repository to the filesystem path `/` of the container | ||
| COPY . /app/ | ||
|
|
||
| # Install pipenv | ||
| RUN chmod +x entrypoint.sh && apt-get update -y && pip install pipenv | ||
| # Install uv | ||
| RUN chmod +x entrypoint.sh && apt-get update -y && pip install uv | ||
|
|
||
| # Code file to execute when the docker container starts up (`entrypoint.sh`) | ||
| ENTRYPOINT ["/app/entrypoint.sh"] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| # Default target | ||
| .DEFAULT_GOAL := help | ||
|
|
||
| # Variables | ||
| UV := uv | ||
|
|
||
| .PHONY: help install sync update tree add remove uninstall clean run lock | ||
|
|
||
| help: ## Show available commands | ||
| @echo "Available commands:" | ||
| @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \ | ||
| awk 'BEGIN {FS = ":.*?## "}; {printf " %-15s %s\n", $$1, $$2}' | ||
|
|
||
| install: ## Install dependencies from pyproject.toml | ||
| $(UV) sync | ||
|
|
||
| sync: ## Sync environment with lock file | ||
| $(UV) sync | ||
|
|
||
| update: ## Update dependencies | ||
| $(UV) lock --upgrade | ||
| $(UV) sync | ||
|
|
||
| tree: ## Show dependency tree | ||
| $(UV) tree | ||
|
|
||
| lock: ## Generate/update uv.lock | ||
| $(UV) lock | ||
|
|
||
| add: ## Add a package (usage: make add package=requests) | ||
| $(UV) add $(package) | ||
|
|
||
| remove: ## Remove a package (usage: make remove package=requests) | ||
| $(UV) remove $(package) | ||
|
|
||
| uninstall: ## Alias for remove | ||
| $(UV) remove $(package) | ||
|
|
||
| run: ## Run python app (usage: make run script=main.py) | ||
| $(UV) run python $(script) | ||
|
|
||
| clean: ## Remove virtual environment and cache | ||
| rm -rf .venv | ||
| rm -rf .pytest_cache | ||
| rm -rf __pycache__ | ||
| find . -type d -name "__pycache__" -exec rm -rf {} + |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| [project] | ||
| name = "github-access-using-githubapp" | ||
| version = "3.0.0" | ||
| description = "An action to generate GitHub Installation Access Token using GitHub App's private key and AppId." | ||
| requires-python = ">=3.13" | ||
| authors = [ | ||
| { name = "githubofkrishnadhas" } | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| "requests >= 2.34.2", | ||
| "jwt>= 1.4.0", | ||
| "cryptography >=48.0.0", | ||
| "python-dotenv >= 1.2.2" | ||
| ] |
Large diffs are not rendered by default.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.