Skip to content
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

Bump the actions-dependency group with 9 updates #66

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
16 changes: 8 additions & 8 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-python@v4.7.0
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v5.0.0
with:
python-version: '3.x'
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
with:
token: ${{ secrets.GITHUB_TOKEN }}
tagging:
Expand All @@ -20,7 +20,7 @@ jobs:
outputs:
net_tag: ${{ steps.tag_version.outputs.new_tag }}
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
Expand All @@ -31,16 +31,16 @@ jobs:
test-action-default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: arduino/setup-task@v1
- uses: actions/checkout@v4.1.1
- uses: arduino/setup-task@v2
- name: Test local action
id: local-action
uses: ./
test-action-not-default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: arduino/setup-task@v1
- uses: actions/checkout@v4.1.1
- uses: arduino/setup-task@v2
- name: Test local action
id: local-action
uses: ./
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tag_and_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-python@v4.7.0
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v5.0.0
with:
python-version: '3.x'
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
with:
token: ${{ secrets.GITHUB_TOKEN }}
tagging:
Expand All @@ -20,7 +20,7 @@ jobs:
outputs:
next_tag: ${{ steps.tag_version.outputs.new_version }}
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Post to a Slack channel
if: ${{ success() }}
id: slack_success
uses: slackapi/slack-github-action@v1.24.0
uses: slackapi/slack-github-action@v1.25.0
with:
channel-id: 'sdcadmin-operator'
slack-message: ':cool-doge: `${{github.repository}}` new version: ${{needs.tagging.outputs.next_tag}}'
Expand Down
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ runs:
using: "composite"
steps:
- name: Setup Python
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v5.0.0
with:
python-version: "3.x"
- name: Install Bats and bats libs
uses: bats-core/[email protected].5
uses: bats-core/[email protected].6
with:
bats-version: ${{ inputs.bats_version }}
support-path: "${{ github.workspace }}/.bats/bats-support"
Expand All @@ -107,12 +107,12 @@ runs:
shell: bash
run: sudo apt update; sudo apt install -y gettext-base
- name: Setup Taskfile
uses: arduino/setup-task@v1
uses: arduino/setup-task@v2
- name: Setup Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v4
- name: Setup KinD
if: ${{ inputs.kind_needed == 'true' }}
uses: helm/kind-action@v1.8.0
uses: helm/kind-action@v1.9.0
with:
version: ${{ inputs.kind_version }}
config: ${{ inputs.kind_config_path }}
Expand All @@ -121,7 +121,7 @@ runs:
kubectl_version: ${{ inputs.kind_kubectl_version }}
verbosity: ${{ inputs.kind_log_level }}
- name: Download image artifact
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.3
if: ${{ inputs.import_image_artifact == 'true' }}
with:
name: ${{ inputs.artifact_name }}
Expand Down
Loading