Skip to content

Commit

Permalink
Update various actions versions and simplify
Browse files Browse the repository at this point in the history
- Simplify versions for GitHub Actions to use major.minor and drop the
  .patch part so that the latest minor version is fetched and we get
  fewer dependabot pings.
- Update a couple of the outstanding actions that need updating.
  • Loading branch information
tofu-rocketry committed Apr 10, 2024
1 parent b3e692f commit 1187c8a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-pkgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Build RPM package
id: rpm
uses: naveenrajm7/rpmbuild@v1.0.0
uses: naveenrajm7/rpmbuild@v1.0
with:
spec_file: "apel-ssm.spec"

Expand All @@ -51,7 +51,7 @@ jobs:
run: rpmlint ${{ steps.rpm.outputs.rpm_dir_path }}

- name: Upload artifact
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3
with:
name: Binary and Source RPMs
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# Build and push Docker image
# https://github.com/docker/build-push-action
name: Build and push Docker image
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v5.3
with:
# Only push containers to the registry on GitHub pushes,
# not pull requests. GitHub won't let a rogue PR create a container
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
- name: Run unit tests
run: coverage run --branch --source=ssm,bin -m unittest discover --buffer
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v4.2

0 comments on commit 1187c8a

Please sign in to comment.