Full-stack web application that lets users search for tech stacks by location. Uses a NestJS backend, React frontend, and PostgreSQL database.
A full-stack web application that allows users to breakdown the Stack Overflow Developer Survey. Uses Spring Boot as a REST API and React as the front-end that calls the API and generates views based off responses.
A Ruby on Rails webapp that facilitates the exchange of textbooks for the University of North Carolina at Charlotte
A cross-platform mobile application built with Flutter that tracks which animals you have seen. It also utilizes the Google Cloud platform to identify which animal is in the picture. Facts on animals you have collected can be viewed.
swap to ingressclass + add validating webhook
bugfix delete functionality
add tests + bugfix deletion
add require true msg in tests
make url control character dynamic
add unit tests
remove unused const
Fix GitHub action deprecation warnings (#78)
raise checkout action version to v3
update checkout action to v3
This PR is to fix the set-output
command deprecation errors.
An example of this error:
Warning: The set-output command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
The only GitHub action I could find that would be causing this issue was actions/checkout
. Related fix: https://github.com/actions/checkout/issues/959
Related Issue: https://github.com/Azure/k8s-bake/issues/75
This syntax is not valid in GitHub workflows. This wouldn't work with any action.
You should be using something like
- run: echo ::set-output name=server_folder::${{ env.PRJ_PREFIX }}-${{ env.CONFIG_SERVER }}
id: variables
- name: Deploy Manifests
uses: Azure/k8s-deploy@v4
with:
namespace: ${{ env.PETCLINIC_NAMESPACE }}
manifests: |
${{ steps.variables.outputs.server_folder }}/k8s/deploy
Here's a related discussion with more examples.