Skip to content

Commit

Permalink
Merge pull request #16 from uw-it-aca/task/bump-deployment
Browse files Browse the repository at this point in the history
actions bump, licence date
  • Loading branch information
mikeseibel authored Jun 6, 2023
2 parents 69d29d5 + 5012331 commit ea827ac
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:

steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8

Expand All @@ -47,18 +47,18 @@ jobs:
app_name: '.'

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2

- name: Cache Docker layers
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-$(echo ${{ hashFiles('Dockerfile') }} | head -c 16)
restore-keys: |
${{ runner.os }}-buildx-
- name: Build App Image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
tags: ${{ needs.context.outputs.image_tag }}
push: false
Expand All @@ -85,7 +85,7 @@ jobs:

steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Deployment Pipeline
if: >-
Expand All @@ -101,7 +101,7 @@ jobs:
- name: 'Surface context from executed build step'
id: context
shell: bash
run: echo "::set-output name=context::$(< ${CONTEXT_FILENAME})"
run: echo "context=$(< ${CONTEXT_FILENAME})" >> $GITHUB_OUTPUT

housekeeping:
if: github.event_name == 'push'
Expand Down
3 changes: 3 additions & 0 deletions linkbot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

#!/usr/bin/env python3
# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
Expand Down
3 changes: 3 additions & 0 deletions linkbots/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
"""
Expand Down
3 changes: 3 additions & 0 deletions linkbots/jirabot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
"""
Expand Down
3 changes: 3 additions & 0 deletions linkbots/servicenowbot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion linkconfig_example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2022 UW-IT, University of Washington
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# LinkBot Configuration
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2022 UW-IT, University of Washington
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

from setuptools import setup
Expand Down
3 changes: 3 additions & 0 deletions util/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
"""
Expand Down
3 changes: 3 additions & 0 deletions util/endpoint.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
"""
Expand Down
3 changes: 3 additions & 0 deletions util/metrics.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
"""
Expand Down
3 changes: 3 additions & 0 deletions util/saml.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
"""
Expand Down
3 changes: 3 additions & 0 deletions util/slash_cmd.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0

# Copyright 2022 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
"""
Expand Down

0 comments on commit ea827ac

Please sign in to comment.