From 5818f34e2b6695bac1b73a2474d0e6612133a4ac Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Fri, 16 Aug 2024 11:18:15 -0700 Subject: [PATCH 1/2] Updates actions/checkout to latest version, now that el7 is fully dead --- .github/workflows/lint.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/test-salt-linux.yml | 2 +- .github/workflows/test-salt-windows.yml | 2 +- .github/workflows/test.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a952323..5c18069 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone this git repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: Project Syntax Verification run: make docker/run target="${{ inputs.tardigradelint-target }}" @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone this git repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: Check workflow files uses: reviewdog/action-actionlint@4f8f9963ca57a41e5fd5b538dd79dbfbd3e0b38a diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9182fcf..237da64 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 with: fetch-depth: 0 - run: git fetch --tags --force origin # WA: https://github.com/actions/checkout/issues/882 diff --git a/.github/workflows/test-salt-linux.yml b/.github/workflows/test-salt-linux.yml index d6fc524..5a5694c 100644 --- a/.github/workflows/test-salt-linux.yml +++ b/.github/workflows/test-salt-linux.yml @@ -50,7 +50,7 @@ jobs: SALT_REPO_URL: ${{ format(inputs.salt-repo-url, inputs.salt-os-version) }} steps: - name: Clone this git repository - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # Install salt - run: touch /etc/fstab diff --git a/.github/workflows/test-salt-windows.yml b/.github/workflows/test-salt-windows.yml index 63b087e..676706e 100644 --- a/.github/workflows/test-salt-windows.yml +++ b/.github/workflows/test-salt-windows.yml @@ -44,7 +44,7 @@ jobs: SALT_REPO_URL: https://repo.saltproject.io/salt/py3/windows/${{ inputs.salt-version }} steps: - name: Clone this git repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # Install salt - if: inputs.salt-installer-url != '' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 84a2857..a3bb69c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone this git repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: Start the mock AWS stack run: make mockstack/up From 572c5fda77bc6d54392da08c364629e42afcc017 Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Fri, 16 Aug 2024 11:18:25 -0700 Subject: [PATCH 2/2] Bumps version to 1.6.2 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8963bb1..9e8358c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.1 +current_version = 1.6.2 commit = True message = Bumps version to {new_version} tag = False diff --git a/CHANGELOG.md b/CHANGELOG.md index 5040ce5..e6b1cfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.6.2](https://github.com/plus3it/actions-workflows/releases/tag/1.6.2) + +**Released**: 2024.08.16 + +* Updates actions/checkout steps to use current v4 release, since EL7 containers + no longer need to be supported. + ### [1.6.1](https://github.com/plus3it/actions-workflows/releases/tag/1.6.1) **Released**: 2024.07.02