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

Pins actions/checkout to v3 to maintain support for EL7 containers #38

Merged
merged 7 commits into from
Feb 21, 2024
Merged
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.0
current_version = 1.4.1
commit = True
message = Bumps version to {new_version}
tag = False
Expand Down
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ updates:
directory: /
schedule:
interval: weekly
ignore:
- dependency-name: "actions/checkout"
update-types: ["version-update:semver-major"]
# Maintain dependencies for dockerfiles
- package-ecosystem: docker
directory: /
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-salt-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
SALT_REPO_URL: ${{ format(inputs.salt-repo-url, inputs.salt-os-version) }}
steps:
- name: Clone this git repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

# Install salt
- run: touch /etc/fstab
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

### [1.4.1](https://github.com/plus3it/actions-workflows/releases/tag/1.4.1)

**Released**: 2024.02.21

**Summary**:

* Updates Github Actions workflow to use previous version of action/checkout
to v3 instead of v4 to support EL7 containers. Also updates dependabot config
to ignore future action/checkout releases.

### [1.4.0](https://github.com/plus3it/actions-workflows/releases/tag/1.4.0)

**Released**: 2023.11.06
Expand Down